Concurrent Execution

 

Hi,

Is it possible to execute concurrent statements in mql4?

Please advise.

Thanks.

 
aryan116:

Hi,

Is it possible to execute concurrent statements in mql4?

Please advise.

Thanks.

Could you enlighten (e.g. by example taken from other programming language), what the "concurrent statement" in programming means?

 
aryan116: Is it possible to execute concurrent statements in mql4?
No. Until you return to the terminal other event handlers will not run, (ticks will be lost.)
Ex Ovo Omnia: what the "concurrent statement"
Multithreading - Wikipedia
 

I believe he meant an alternative to the "sequential statements", but there are not many languages that implement them. Multithreading is a means rather than a statement.

 
Ex Ovo Omnia:

I believe he meant an alternative to the "sequential statements", but there are not many languages that implement them. Multithreading is a means rather than a statement.

The answer to the OP question is : yes. While you can't deal directly with threads with mql, you can "mimic" multithreading by running several EAs (for example).

Of course, the question would need more details to be clearer.