Question regarding Start() function ?

 
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
 
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
 
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.