How to Multiples Experts or Services

 
Hi,
I want to start an expert and this expert starts other expert or a service. It is possible? I think it's only possible using DLL.

If I create a DLL, is it possible to simultaneously call several other experts or several other services and have all them running simultaneously, or will it be necessary to wait one to finish before starting the other? I want them all running simultaneously. If it is possible using dll do you have an example?
Thanks.

 
Please don't post randomly in any section. Your topic has been moved to the section: Expert Advisors and Automated Trading
 

Create a template with the EA and apply it to the chart ...

ChartApplyTemplate

Applies a specific template from a specified file to the chart

However, I would recommend you rethink your approach.

You may be making it difficult for yourself. Analyse the issue and try solve it in a more elegant manner.

Documentation on MQL5: Chart Operations / ChartApplyTemplate
Documentation on MQL5: Chart Operations / ChartApplyTemplate
  • www.mql5.com
ChartApplyTemplate - Chart Operations - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
 
Fernando Carreiro #:

Create a template with the EA and apply it to the chart ...

ChartApplyTemplate

Applies a specific template from a specified file to the chart

However, I would recommend you rethink your approach.

You may be making it difficult for yourself. Analyse the issue and try solve it in a more elegant manner.

Thank you Fernando.