Any questions from newcomers on MQL4 and MQL5, help and discussion on algorithms and codes - page 926
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
Who knows what function can remove an EA from a chart? I want to write a criterion and if it is fulfilled remove the EA from the chart.
void ExpertRemove();
Terminates the Expert Advisor and unloads it from the chart.
void ExpertRemove(); Terminates the Expert and unloads it from the chart.
Thank you
This is more concise, but probably slower
but will go like this Alert(EnumToString(ENUM_TIMEFRAMES(_Period)));
or Alert(StringSubstr(EnumToString((ENUM_TIMEFRAMES)_Period),7));It's easy:
2019.07.27 16:24:29.226 Stack overflow in 'C:\Program Files (x86)\Terminal\MQL4\indicators\i_SSA.ex4'
The indicator from the article shows the same errors.
The files I use in the article are attached. I have fixed a division by zero error in the library file.
Please advise, I don't know where to look for the error.
Gentlemen - maybe things have changed around here... :-)
I placed the *.ex4 file in the ..MQL4/Expetrs directory on my cloud drive in the main F4you directory... It is not displayed in the terminal under "Navigation", i.e. it is not possible to run the robot.
How do I correctly install the executable expa file to run it for bidding?
Gentlemen - maybe things have changed around here... :-)
I placed the *.ex4 file in the ..MQL4/Expetrs directory on my cloud drive in the main F4you directory... It is not displayed in the terminal under "Navigation", i.e. it is not possible to run the robot.
What is the correct way to install the executable expa file to run the robot for bidding?
Storage folder: File --> Open Data Folder --> MQL4\Experts\Here.ex4
If this is the case but the EA is not visible in the navigator, then ... congratulations - you have run out of possible programmes in your navigator. You need to delete something. Unfortunately, MetaTrader4 has a limit to the number of programmes the Navigator can see. I faced this problem when creating a large number of indicators. In order not to delete a lot of them I simply copied the code into a test file and compiled and ran it - that is how I always tested the indicators I needed in one file - erased the file contents, put a new code in it, compiled and tested - finished. Then the next one - erased the contents of the file, inserted new code into it ..., and so on in a circle ...
What could be the reasons?
https://www.mql5.com/ru/forum/318997