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
Hello Forum,
usually I use the following code to avoid the execution of my EA on every tick because I calculate with closed bars:
But now I want the EA to be executed once an hour. Is this code correct?
void OnTick() { static datetime Time0; if (TimeHour(Time0) == TimeHour(TimeCurrent())) return; Time0 = Time[0];