how to run single ea on multiple charts

 
can anyone know how to run single ea with different parameters to multiple charts at a same time on vps
 

The question you asked is already answered.

Just open different multiple chart and simply drag and drop the EA on each chart. That should be easy to do... 

:) 

 
if same pair, you must change magic number.
 
tuoitrecuoi:
if same pair, you must change magic number.

If you're using MT5, you have to be aware that MT5 is "position-centric", opposite to MT4 which is "order-centric".

In this case, running 3 different EA's on the same symbol in MT5 will cause different executed orders to modify the average position price, and, in this case, all your EA's have to "manage" this, otherwise it's highly possible that they won't communicate to each other and cause a real mess on your account.

Regards,
Malacarne 

 
what if ea has limit of opening one position only at a time
 

Hi, does anyone have a response to the question of running the same EA on multiple charts. I changed the magic number on each chart, but it still trades only one pair at a time. Is it related to the total orders count?


Please assist.

 
Francis Dogbe:

The question you asked is already answered.

Just open different multiple chart and simply drag and drop the EA on each chart. That should be easy to do... 

:)👆

 
Denzilm: Is it related to the total orders count?
Using OrdersTotal directly and/or no Magic number filtering on your OrderSelect 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 and MetaTrader 4 - MQL4 programming forum
Reason: