×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Text
Posted by: userc865b
Added: May 4, 2018 1:37 PM
Modified: May 13, 2018 10:28 AM
Views: 3108
Tags: mql4
  1.  void wait() {          
  2.    // warteschleife
  3.    while (FileIsExist("file.txt")==false && !IsStopped()) {      
  4.       Sleep(3000);      
  5.    }  
  6. }