Dear experienced traders,
I'm planning to run several different EA in one ac. I want to run them in fixed-lot and in a relatively large balance.
Could you list up any reason EA could affect each other?
Thank you in advance and best wishes,
Sky
No will not... function of EA will be disturbed when DD goes down because of other EA. I tested several times like this. Now I don't use multiple EA in one ac
Thank you, Prabir.
I'm planning to use them in a fixed-lot(fixed maximum open position) and a relatively large balance to avoid that.
In your opinion, even balance is large enough, also some problem like this will happen, right?
Best regards,
Sky
If these are not your own EAs then you might have problems. Each EA should have its own magic number, so in theory would manage only its own trades......but you would need to know how the EA uses the number.
Thank you, Andrew.
Magic number and close ALL trades, yes, they are problems I have to avoid.
Best regards,
Sky
- Magic number only allows an EA to identify its trades from all others. Using OrdersTotal/OrdersHistoryTotal
(MT4) or PositionsTotal (MT5), directly and/or no Magic number filtering on your OrderSelect /
Position select loop means your code is incompatible with every EA (including itself on other charts and manual trading.)
Symbol Doesn't equal Ordersymbol when another currency is added to another seperate chart . - MQL4 programming forum
PositionClose is not working - MQL5 programming forum
MagicNumber: "Magic" Identifier of the Order - MQL4 Articles - What happens if one wants to buy and the other sell on the same symbol? Mn doesn't help there.
In my experience its better to run each EA on separate accounts and enable MM of your EA. The result is much better than using small fixed size. instead of reducing the risk of MM just use smaller account size.
If you want to run 2 or more EA on one account its better to use EAs with similar DD correlation. It means when
one EA is in DD other EA should be in DD too. It seems incorrect at first but in this way your DD will be greater and also your profit will be better.
But if one EA is wining and other EA is losing at the end your profit will be much smaller than running any of this EA alone. That's because when
one EA is wining the other EA will lose bigger lot size than it normally would loose without the profit of other EA. and the wining EA can't
compound the profit it gains for next trade.
In my experience its better to run each EA on separate accounts and enable MM of your EA. The result is much better than using small fixed size. instead of reducing the risk of MM just use smaller account size.
If you want to run 2 or more EA on one account its better to use EAs with similar DD correlation. It means
when one EA is in DD other EA should be in DD too. It seems incorrect at first but in this way your DD will be greater and also your profit will
be better. But if one EA is wining and other EA is losing at the end your profit will be much smaller than running any of this EA alone. That's
because when one EA is wining the other EA will lose bigger lot size than it normally would loose without the profit of other EA. and the
wining EA can't compound the profit it gains for next trade.
Thank you, Hamed. What do you mean MM of EA?
MM= money management. Almost all EAs have some kind of money management system. If you want to compound profit most of the time its better to use default MM setting that come with the EA but use smaller account size if you are not comfortable with default settings.
Thank you, HAMED.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Dear experienced traders,
I'm planning to run several different EA in one ac. I want to run them in fixed-lot and in a relatively large balance.
Could you list up any reason EA could affect each other?
Thank you in advance and best wishes,
Sky