Hello everyone,
I am building a REST client EA which makes HTTP calls to an external web service. I would like to know which is the best and simplest way for the EA to perform the HTTP query and get the JSON data.
From what I have seen in Code Base, coders use to make HTTP calls in the context of the main thread, but I think that it would be better to "fork" the main process, or create a new async thread in order to call the webservice. There sre some OO programming languages with classes to facilitate the creation of these kind of asynchronous threads...
Is there something like that in MQL5? Otherwise, is it recommended to run Internet queries on the EA's main thread?
Thanks in advance,
There is no facilities in mql5 to manage threads. However with a little imagination you can run code in multiple threads and communicate between them.
The recommended way to communicate with external process is through named pipes.
There is no facilities in mql5 to manage threads. However with a little imagination you can run code in multiple threads and communicate between them.
The recommended way to communicate with external process is through named pipes.

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hello everyone,
I am building a REST client EA which makes HTTP calls to an external web service. I would like to know which is the best and simplest way for the EA to perform the HTTP query and get the JSON data.
From what I have seen in Code Base, coders use to make HTTP calls in the context of the main thread, but I think that it would be better to "fork" the main process, or create a new async thread in order to call the webservice. There sre some OO programming languages with classes to facilitate the creation of these kind of asynchronous threads...
Is there something like that in MQL5? Otherwise, is it recommended to run Internet queries on the EA's main thread?
Thanks in advance,