Questions from Beginners MQL5 MT5 MetaTrader 5 - page 1409

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
There is such a function in MQL5:
SymbolInfoDouble(Symbol(),SYMBOL_SESSION_PRICE_LIMIT_MAX)
According to the description, it returns "Maximum allowable price value per session".
Nobody knows what this value means? Is it the price limit above which trading will be stopped (if we believe the description)?
Can you tell me how to interrupt and remove from the report (or not to put in the report) a specific run under certain conditions (equality of values of two parameters to be searched) when optimising in MT5. If I just interrupt execution, the zero value still remains in the listof runs (Optimisation Result), clogging and slowing down the optimisation process .
Can you please tell me, is this tester's performance in life realistic? And is it good or bad result for a year with depo 3000$?
Why did you only take the 12th year? You should have taken the period from 12th to 22nd year, where you would have lost in the interval.
Good morning! You can write it like this:
Regards, Vladimir.
Good day!
I am trying tocreate Expert Advisors through generation and faced the problem of a small number of signal modules (about 20). I want to combine, for example, Ishimoku or Bolinger with another one(s), but in the standard MT5 there are no signals of these indicators.
On the videos in the Internet you can see that people have an extended database of signal modules - can you tell me where to get it?
Good day!
I am trying tocreate Expert Advisors through generation and faced the problem of a small number of signal modules (about 20). I want to combine, for example, Ishimoku or Bolinger with another one(s), but in the standard MT5 there are no signals of these indicators.
On the videos in the Internet you can see that people have an extended database of signal modules - can you tell me where to get it?
Hello, Vladimir!
There are many trading modules in CodeBase. Look there. If you can't find it, you have two more options: either try to write your own trading signal(but for free!) based on the article MQL5 Wizard: How to write your own trading signal module or contact Freelance and they will write any trading module for you, but for money.
Regards, Vladimir.
Can you tell me how to interrupt and remove from the report (or not to put in the report) a particular run under certain conditions (equality of values of two parameters to be searched) when optimising in MT5. If I just interrupt execution, the zero value still remains in the listof runs (Optimisation Result), clogging and slowing down the optimisation process .
Try checking in Init() that no run is needed with such parameters, and if so, return INIT_PARAMERTERS_INCORRECT from this function.
Thanks, Yuri!
Guys, hi all the pros and who knows how!
I have a problem with getting data from an indicator -- please help me, who can do it....
Function Objective: Calculate the average distance in points between the outer lines of the indicator"Bollinger Bands", for the specified period.
The essence of the problem: I can't get the real values of the price on the indicator lines for the specified bar, because for some reason the same price value is written to different buffers of the indicator, which also does not correspond to the real values of any of the lines on this bar. And as a result, some unknown price value is written to different buffers (at different requests), which nullifies the whole further work of the function.
Moreover, using exactly the same method as in this function, I was able to get indicators from any other indicators, but here it doesn't work....