To have Sleep(1000) loop & Start() run together

 

I am not good in programming. I know that start() is work on every new incoming tick, I would like to have Task A work every new tick, Task B work every 1 second, both task run in parallel. How should I code?

 

Below my code structure, Task A also work every second which is not what I want. I want to make Task B an independent loop. Thanks 

 

int start()

 Task A;

 while(1==1)

       {   Task B;

 Sleep (1000);

         }

 
Read the documentation for OnTimer, that should give you some clues
 
GumRai:
Read the documentation for OnTimer, that should give you some clues
OK. will try~ Thanks GumRai!
 
GumRai:
Read the documentation for OnTimer, that should give you some clues

Hi GumRai,

 

OK. I get it.

 

1 EA only can set 1 timer? Possible to set multiple timer in 1 EA?

Thanks 

 

There can only be 1 timer set at a time.

It does not have to be set in init.

For less than 1 second, EventSetMillisecondTimer.

You say that you are not good in programming, I would suggest that you stick to a single Timer event in your EA until you are more confident. 

 
GumRai:

There can only be 1 timer set at a time.

It does not have to be set in init.

For less than 1 second, EventSetMillisecondTimer.

You say that you are not good in programming, I would suggest that you stick to a single Timer event in your EA until you are more confident. 

 Thanks GumRai. I've 1 last question.

 

I've read FileReadString doc, but I scratch my head  to display text using comment or print.


https://docs.mql4.com/files/filereadstring


 My code:

 

 file_handle=FileOpen( "myfile.txt",FILE_READ);
 string mytext;
 mytext= FileReadString(file_handle);
 Comment(" My text is " +mytext);   //This is where I stuck....

 

PrintFormat(mytext) can work, but I not able to put this in comment.


I try Stringformat as well but return (NULL), means keep print (NULL). 

Kindly advice. Thanks 

 

Please try to avoid the large gaps between lines and in your code. It doesn't make it nice to read.

Please use the SRC button when posting code

 

Your code should work as far as I can see.

Do you get " My text is " printed in your comment? 

If so, then the first line in the file is probably blank

If the comment is different, maybe you over-write the Comment elsewhere in the code, or another indicator or EA is over-writing it. 

 

Yes, I able to get "My text is" but after that the mytext string read from text file is not showing.

 I just wrote OK in the first line of the text file. 

If I use Stringformat("My text is %s",mytext), it will show My text is (NULL).

 

Possibly your file is not in the correct folder

   ResetLastError();
   int file_handle=FileOpen("myfile.txt",FILE_READ);
   if(file_handle==INVALID_HANDLE)
      Print("Error opening file, Error- ",GetLastError());
   string mytext;
   mytext=FileReadString(file_handle);
   Comment(" My text is "+mytext);   //This is where I stuck....

 

 Check for errors

 
GumRai:

Possibly your file is not in the correct folder

 

 Check for errors

I get error 5004.

5004

ERR_FILE_CANNOT_OPEN

Cannot open file

 

Solved now by adding    FileClose(file_handle);

 Thanks GumRai so much! 

Reason: