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
Forum on trading, automated trading systems and testing trading strategies
ParameterGetRange()
fxsaber, 2018.11.16 09:17
How can you run an Expert Advisor in the .ex4 format by connecting it in an Expert Advisor with a different name, and it is necessary that the input parameters were displayed, i.e. it was possible to fully work with it.
We have a compiled Expert Advisor with the name "Trade.ex4".
Create a new Expert Advisor with the name "Hand.ex4".
How to combine them so that when "Hand.ex4" is launched, "Trade.ex4" will be fully functional and "Trade.ex4" will be embedded in "Hand.ex4".
That is, we have only Hand.ex4 file on the machine, but we use Trade.ex4 in work
Thank you!
How can you run an Expert Advisor in .ex4 format...
The library in its current form works only with EX5.
In myself, as part of a certain project, I solved it this way (with the "name" tag just like that):
Thanks, it works like that!
Only I added chartId to the name of the saved template, so that identical EAs on different charts don't fight for the same file.
@fxsaber, there is "#ifndef __MQL5__" in the code, why not take cross-platform to its logical conclusion?
To make Is work, we add to the beginning of the code:
And correct the function itself:
Any other difficulties?
Any other difficulties?
A chart with only one indicator running.
ZY This is how it should work
All library functionality now works on MT4.
The library has become cross-platform.
MT4-example:
Форум по трейдингу, автоматическим торговым системам и тестированию торговых стратегий
Библиотеки: Expert
fxsaber, 2019.04.09 13:19
What is the best way to run an EA in .ex4...