How to get countdown timer every bar .....

 

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.

 

Countdown Timer

Look for indicator in this forum for : B-Clock Modified

Good Luck

Frameguy

 
nettsaver:
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.

Files:
 
nettsaver:
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.

Reason: