Trading More than one currency
-
How can I trade more than one currency using my fxdreema made ea? Is it as simple as loading the ea on each chart I want to trade?
-
Yes, it is. You just need to change the Magic Number on each chart that the EA is trading.
-
You can run the same EA on different charts with different Symbol names and each instance of the EA will work independently with its own trades. This is because the blocks (for example "No trade") are set by default to work only with trades from the current symbol and don't look at other trades with different symbol names. So, there is no need to change the magic number. But if you plan to run the same EA on two charts with the same symbol name, and you want each EA instance to work with its own trades, then change the magic number.
-
Thank you @fxDreema