I do not know how to open two EAs on the same chart. Why do you not just open two charts and place both EAs on two separate charts?
Thank you.
Can't be done. Open two charts.
is there a way to run 2 EAs at the same symbol then?
is there a way to run 2 EAs at the same symbol then?
An easy way to do this is to follow the following steps:
1. Merge the code of the two EAS into a single mq4 file.
2. Rename function start() of the first EA to start_EA1()
3. Rename function start() of the second EA to start_EA2()
4. Create a new function start() as follows
int start()
{
start_EA1();
start_EA2();
}
5. Compile and attach the resulting EA to a chart.
6. Enjoy it.
AM.
An easy way to do this is to follow the following steps:
1. Merge the code of the two EAS into a single mq4 file.
2. Rename function start() of the first EA to start_EA1()
3. Rename function start() of the second EA to start_EA2()
4. Create a new function start() as follows
5. Compile and attach the resulting EA to a chart.
6. Enjoy it.
AM.
What if we have only ex file not the source code ?
Yup, just use 2 charts with a different magic number on the EA.
An easy way to do this is to follow the following steps:
1. Merge the code of the two EAS into a single mq4 file.
2. Rename function start() of the first EA to start_EA1()
3. Rename function start() of the second EA to start_EA2()
4. Create a new function start() as follows
5. Compile and attach the resulting EA to a chart.
6. Enjoy it.
AM.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use