kamalzadeh:
Why is the alert function executed earlier than the print function?
void OnStart()
{
//---
int x,y;
for(x=0;x<100;x++){
Print(x);
}
Alert("code is over !!!");
}
Alert executes only when for loop completes
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

Why is the alert function executed earlier than the print function?
void OnStart()
{
//---
int x,y;
for(x=0;x<100;x++){
Print(x);
}
Alert("code is over !!!");
}