Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 1076
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
Is that OK? if (OrderCloseTime() > iTime(Symbol(), PERIOD_D1, 0) ...
But before midnight, the orders of the day will be thick, and immediately after midnight, they will be empty
RequiredInterval=36000; // 10 hours
Is it better like this? if ((TimeCurrent()-OrderCloseTime()) < RequiredInterval) ...
Will this do? if (OrderCloseTime() > iTime(Symbol(), PERIOD_D1, 0) ...
But before midnight, today's orders will be dense, and right after midnight, they will be empty.
RequiredInterval=36000; // 10 hours
Is it better like this? if ((TimeCurrent()-OrderCloseTime()) < RequiredInterval) ...
Help who can, there is an error in the line below. Code in mt5.
StringTrimLeft( StringSubstr(ResultSymbols,1,StringLen(StringSubstr(ResultSymbols,0,1))- 1));
Added string ResultSymbols="12345"; Compiled without error. Try splitting into parts
What is the correct way to deal with the error : array out of range in '... in this situation when switching to #property strict ?