tcsabina:
No, you cannot even do it for the currency pair that the EA is on let alone other currency pairs . . . your EA will miss some ticks sometimes, perhaps very often. Write some code and discover how many ticks you are missing, you may be very surprised.
Hello Experts!
Is it possible to create an EA whose onTick() function is called whenever a new tick arrives, no matter what is the currency of that particular tick?
tcsabina: Is it possible to create an EA whose onTick() function is called whenever a new tick arrives, no matter what is the currency of that particular tick?
Yes, create an EA that processes the current chart only (OnTick.) Then put it on multiple pairs. Done.

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
Hello Experts!
Is it possible to create an EA whose onTick() function is called whenever a new tick arrives, no matter what is the currency of that particular tick? Based on my limited mql knowledge, an EA is only 'listening' on the chart where it is connected to. So if I place an EA on the EURUSD chart, the EA's onTick() will be called whenever there is a new EURUSD tick comes.
Is there a way to create an kind of ultimate onTick() function, that will be called for every tick that comes into the terminal?
Thanks in advance.