Countdown Timer
Look for indicator in this forum for : B-Clock Modified
Good Luck
Frameguy
Hi,
Does anyone know how to attach countdown timer to every bar to the chart ? Or any suggestion how do we know that every bar is going to end ?
Thank you.Please try this indicator.I think this may help you.
Hi,
Does anyone know how to attach countdown timer to every bar to the chart ? Or any suggestion how do we know that every bar is going to end ?
Thank you.If you want to code EA with on Chart countdown Bar Clock, insert this code after int start() as below;
int start()
{
double g;
int m,s,k;
m=Time[0]+Period()*60-TimeCurrent();
g=m/60.0;
s=m%60;
m=(m-m%60)/60;
Comment( m + " minutes " + s + " seconds left to bar end");Wackena
Timer..........
Ok.... I got it and already attach to chart. Thanks so much to all of you.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi,
Does anyone know how to attach countdown timer to every bar to the chart ? Or any suggestion how do we know that every bar is going to end ?
Thank you.