Thank you Slawa. It worked but my CPU is now 100% busy.
Is there anything I can do to fix that?
I am fine to have 90 minute chart getting updated every few minutes rather than every couple of ticks.
Thank you,
sam123.
Is there anything I can do to fix that?
I am fine to have 90 minute chart getting updated every few minutes rather than every couple of ticks.
Thank you,
sam123.
insert Sleep function in the source.
Instead of
Instead of
while(IsStopped()==false) { int cur_time=LocalTime();
write
while(IsStopped()==false) { Sleep(50); int cur_time=LocalTime();
Slawa,
This is exactly what I needed.
Thank you so much.
- sam123
This is exactly what I needed.
Thank you so much.
- sam123

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
How do I do that?
Thank you,
sam123.