Questions from Beginners MQL5 MT5 MetaTrader 5 - page 1183
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
Looking at ENUM_TIMEFRAMES Period();
I guessed it was an enumeration.
But enumeration does not follow from int _Period in any way. It is an int. And the expectation from it is the same.
----
But even if it is an enumeration, what great motives does it have to enumerate 16385, -6, -7, etc.
What kind of number is that? Why not enumerate the Fibo sequence, for example? :)
And, although it's not a 4q, why not 60?
Because _Period for mql4 compatibility. And in fact, it's the same value in a predefined variable and nothing else. If you have an irresistible desire to learn mql5, forget everything you know about mql4, forget about minutes in timeframe. Take it as it is and use it.
Because _Period is for mql4 compatibility. In fact, it is the same value in a predefined variable and nothing else. If you have an overwhelming desire to learn mql5, forget everything you know about mql4, forget about minutes in timeframe. Take it for what it is and use it.
OK.
Because _Period is for mql4 compatibility. In fact, it is the same value in a predefined variable and nothing else. If you have an overwhelming desire to learn mql5, forget everything you know about mql4, forget about minutes in timeframe. Take it as it is and use it.
And I agree with the formulation of the question. From Period() is expected, intuitively, at least the number of seconds. And a function which gives the result from an enumeration... is something )))
Then there's an assumption that PeriodSeconds() would be unnecessary. And it would reduce unnecessary gestures...
And I agree with the statement of the question. Period() is expected, intuitively, at least the number of seconds. And a function that returns a result from an enumeration... is something )))
Then there's an assumption that PeriodSeconds() would be unnecessary. And it would reduce unnecessary gestures...
You look like Don Quixote.
This is from the documentation:
ChartIndicatorAdd
Adds an indicator with specified handle to the specified chart window
ChartIndicatorDelete
Deletes an indicator with a specified name from the specified chart window
ChartIndicatorGet
Returns the indicator handle with the specified short name on the specified chart window
ChartIndicatorName
Returns the short name of the indicator by the number in the list of indicators on the specified chart window
ChartIndicatorsTotal
Returns the number of all indicators attached to the specified chart window.
How do I know if the indicator is already on the chart based on the received handle?
If ChartIndicatorName would return a short name by its handle - I see, but what about it? Go through everything in a loop?
Hi connoisseurs. Can you please tell me, if in functions CopyLow,CopyHigh and similar, it is possible to take single data, i.e. from one bar, in a variable (of appropriate type), but not in array, as it is specified in documentation?
Thank you very much for the answer.
Hi connoisseurs. Can you please tell me, if in functions CopyLow, CopyHigh and similar, it is possible to take single data, i.e. from one bar, in a variable (of appropriate type), but not in array, as it is specified in documentation?
Thank you very much for the answer.
You can only do this: ask for a single item, but still in an array. And after that get already values from array from index [0].