
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
@WHRoeder
Obviously I dis-agree. He should have the option. For multi-currency "Pre-Defined" variables just don't cut-it. itime(), marketinfo_bid, marketinfo_digit, etc. Put the EA on one chart and done. :)
He does have the option, open a chart and add the EA.
He doesn't have the option when it trades multiple pairs. Then there is when the EA runs. Start is called only on a new tick of the chart. Not a new tick of the other chart.
He does have the option, open a chart and add the EA.
He doesn't have the option when it trades multiple pairs. Then there is when the EA runs. Start is called only on a new tick of the chart. Not a new tick of the other chart.
The multi-currency version does-not stop him from opening a chart and adding that same Expert to it.
The single chart is better than the multi-chart because of reduced processing for multi-currency experts. No need to tell people "don't trade single chart multi-currency".
Hello everybody,
Everything depends on the algorithm used in trading. If using ticks or is working on new bars.
It seems quite possible to have an EA addressing multiple pairs provided is based on the new bars. Just use the iOpen, iClose, etc ... However I found that for this to work we need pairs used with these functions must appear in the Market Watch window. Also, it is best to place the EA on EURUSD, pair that is generating the most ticks.
For EA multipairs taking decisons opening position from ticks then MT4 can not handle it (since that does not receive the ticks of a pair). Against by MT5 can manage this, because there is a technique to receive ticks from several pairs by an EA placed on a single chart (https://www.mql5.com/en/articles/159).1. Well mines don't. I know how to check if(Order_Symbol_Exist){Before_Placing_Orders;} 8P
2. Duh. Thank you for explaining what happens when you attach to multiple Charts. I don't. 8P
-The Expert is not like Indicators, It'll ignore it's own ticks while it's processing. It'll not receive all ticks, remember why you tell people not to use Volume()==1. So much for not missing ticks.
Hello everybody,
Everything depends on the algorithm used in trading. If using ticks or is working on new bars.
It seems quite possible to have an EA addressing multiple pairs provided is based on the new bars. Just use the iOpen, iClose, etc ... However I found that for this to work we need pairs used with these functions must appear in the Market Watch window. Also, it is best to place the EA on EURUSD, pair that is generating the most ticks.
For EA multipairs taking decisons opening position from ticks then MT4 can not handle it (since that does not receive the ticks of a pair). Against by MT5 can manage this, because there is a technique to receive ticks from several pairs by an EA placed on a single chart (https://www.mql5.com/en/articles/159).Here's an example with my multi-currency template. Here.
Thanks. I think the problem is mt4 doesn't support multicurrency strategy testing which is the problem but I expect it will work when attached to a live demo account
Thanks for all the help. I appreciate it.