1 Answer
<p id="isPasted">You cannot call another EA's code or functions from within your own EA. There's no built-in function or method to achieve this in MQL4/MQL5, the programming languages used for EAs in MetaTrader. </p><p>Inter-EA Communication:</p><p>If you need EAs to interact with each other, you'll need to use alternative methods like:</p><ul><li>Separate Charts/Symbols: Run each EA on a different chart or symbol, using unique magic numbers to identify their trades.</li><li>Code Integration: Combine the code of both EAs into a single EA, creating a unified system.</li><li>External Tools/Sockets: Employ external tools or communication protocols like sockets for inter-application communication between the …</li></ul>