Questions from Beginners MQL5 MT5 MetaTrader 5 - page 930

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
Is it possible:
replace with:
Why not? Of course you can.
Prints: "Open0 1.797693134862316e+308".
Although I have changed both indicator buffer cell number and index.
I know for sure there is an integer in the indicator. Why does it print like this?
Prints: "Open0 1.797693134862316e+308".
Although I have changed both indicator buffer cell number and index.
I know for sure there is an integer in the indicator. Why does it print like this?
Does not help, writes all the time 0.5. It turns out the buffer all the time with the maximum number.
If you want an accurate answer, ask the question correctly: provide the code of the indicator and the code of the Expert Advisor. Now it is not clear WHAT, WHO and WHERE :)
Rohr - indicator
rrr - advisor
Ror - indicator
rrr - EA
Rewrite the indicator - firstly, check for STOP WORDS, secondly, simplify it as much as possible - for example, enter the number equal to the number of the current bar into the indicator buffer.
What we get: array[0]=0.0, array[1]=1.0 and so on. This will VERY, VERY simplify the process of understanding the data reception from the indicator. Third - leave only one indicator buffer.
Can you please tell me how to explicitly specify the updated symbol in this function? For example EURUSD.m
Good afternoon!
Do you know how to build an indicator for Market?
I have a file with .mq5 extension and some include files with .mqh extension.
As far as I understand, you can't attach .mqh to the .mqh file via resources, should I really convert everything to one file manually?
What if there is a new version :? It's crazy +)))
Thanks.
Can you please tell me how to explicitly specify the updated symbol in this function? For example EURUSD.m
A follow-up question: "Why do you need to specify the symbol explicitly here?
If you use this function, you must assign a symbol to m_symbol in OnInit:
In this case, if you run the Expert Advisor on the symbol "EURUSD.m" for m_symbol will be automatically set to "EURUSD.m".