This forum is now read-only. You can discuss you questions on Forums of MQL4.community and MQL5.community

Question regarding Start() function ?


Back to topics list
avatar
99
RJF 2006.08.08 16:20 
Hello,

I want to know whether my code within the start function gets to finish completely, even if a new tick comes in ?

For example we have:

int start()
{

code here

}

does the code within the start function ("code here") get to finish from start to finish, even if a new tick comes in while the program is only half finished ?

Thank you in advance for your help.

Regards

RJF




avatar
136
charliev 2006.08.08 16:36 
Hello,

I want to know whether my code within the start function gets to finish completely, even if a new tick comes in ?



I had the same question... this will help.

"Does code always complete?"

-charliev
avatar
Moderator
269
Tatyana 2006.08.08 16:39 
Please try to refer to "MQL4: Program Run"
If the start() function launched at the preceding quote was running when a new quote came, the new quote will be skipped by the expert.
Back to topics list