[ARCHIVE] Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 3. - page 23
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
Artem, the trick here is that there is a line like this below:
So the way you suggested doesn't make much sense - if I understand correctly what alex12 wants.
Only one error - don't know how to fix it. Where is the problem ?
'Symbol' - initialization expected C:\Program Files\MetaTrader Finam\experts\1.mq4 (8, 13)
'Symbol - initialization expected C:\Program Files\MetaTrader Finam\experts\1.mq4 (8, 13)
You have:
You have to:
Actually, you can double-click on the error message and the cursor will move to the specified (by the way) place where the compilation error occurred, i.e. here: (8, 13)After that, other mistakes will come... :)
Move the above line to the beginning of the start() function
That's a start - then deal with other errors...
That's what I didn't want, more mistakes coming in :)
A completely crazy expression:
There is a condition to start the code:
if(EndHour>Hour() && Hour()>BeginHour)
It works when EA is intraday.
How do I make my EA trade from 22:00 to 03:00, for example?
In the evening, the wok does not work at all for me... Help please!
Replace AND with OR.
if(BeginHour>Hour() || Hour()>EndHour)
Replace AND with OR.
if(BeginHour>Hour() || Hour()>EndHour)
Thank you! Only in addition to || you need to replace "more" signs with "less"... I'm clarifying it for others.
By the way, while you were writing the answer, I invented one more solution with else:
if(EndHour<Hour() && Hour()<BeginHour) //condition for working time
{/*empty*/}else
{/*code EA*/}
Replace AND with OR.
if(BeginHour>Hour() || Hour()>EndHour)
Or - if(!(EndHour>Hour() && Hour()>BeginHour))
There is also hardware. I have a timer that switches the lights in the aquarium on and off. The computer can handle the power.
There is also hardware. I have a timer that switches the lights in the aquarium on and off. The computer can handle the power.
And if an octopus-predictor is launched into this aquarium, we will get a trading system. And such a timer would be priceless!