tgraffa: I was wondering if there's a way ... EA will only place trades during certain hours (i.e. between 3 AM and 7 AM).
- Only if you can code it that way.
#define HR0300 (3*3600) #define HR0700 (7*3600) SECONDS tod = time( TimeCurrent() ); if(tod < HR0300 || tod >= HR0700) return;
Find bar of the same time one day ago - Simple Trading Strategies - MQL4 and MetaTrader 4 - MQL4 programming forum - Don't double post!
General rules and best pratices of the Forum. - General - MQL5 programming forum
whroeder1:
- Only if you can code it that way. Find bar of the same time one day ago - Simple Trading Strategies - MQL4 and MetaTrader 4 - MQL4 programming forum
- Don't double post!
General rules and best pratices of the Forum. - General - MQL5 programming forum
Didn’t know which forum my question belonged in and didn't see the rules... sorry!!
Thank you for the helpful hints, I will try it out :)

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 All,
I'm fairly new to all of this, so I was wondering if there's a way I can add time inputs so that I can leave automatic trading turned on, but the EA will only place trades during certain hours (i.e. between 3 AM and 7 AM).
Not sure if it matters, but I'm using MT4 and MQL4.
Thank you in advance!