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
extern bool UseStartTime = true; extern double TradeStartHour = 15; // local PC time extern double TradeEndHour = 7; // local PC time int h = TimeHour(LocalTime()); int d = TimeDay(LocalTime()); if( UseStartTime == true) { if (h >= TradeStartHour || h <= TradeEndHour ) // need help with this line { Order trigger and order_send code // This I already have } }Many thanks,
Wackena