Hi, I'm trying to run multiple EAs at once using live data. My bots work fine, and they make trades without clashing.
My problem is that I want to be able to pick out which bot made which trade, from the trade report. Is it possible to append some sort of identifier to the trade report?
I've floated around the ideas of (1) starting multiple demo acconts, and (2), using different markets for each bot. However, these two solutions are compromises.
Are there any better ones?
Is it possible to append some sort of identifier to the trade report?
OrderSend's comments don't show up anywhere.
If you know what magic numbers each EA used, you could write a script to loop through all the trades and write the details of trades with that magic number to a file.
In real time, you can write additional code in the EA to write to a file when it places a trade.

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi, I'm trying to run multiple EAs at once using live data. My bots work fine, and they make trades without clashing.
My problem is that I want to be able to pick out which bot made which trade, from the trade report. Is it possible to append some sort of identifier to the trade report?
I've floated around the ideas of (1) starting multiple demo acconts, and (2), using different markets for each bot. However, these two solutions are compromises.
Are there any better ones?