Syntax
Public Function DetrenedPriceOscillator(chart_ID As Long, applyTo As ENUM_APPLIED_PRICE, period As Integer, Ma As ENUM_MA_METHOD) As String
Description
This function used to show a spread of two moving averages. The price oscillator is basically a moving average spread. Buying usually occurs when the oscillator raises, and conversely, selling usually occurs when the oscillator falls.
Parameters
Key | Description |
chart_id | Chart identifier, 0 is the current chart, a value of type Long |
applyTo | Applied price, it can be one of ENUM_APPLIED_PRICE. |
period | The calculation period, on which the indicator will be calculated, |
Ma | Moving average mode can be a value of typeENUM_MA_METHOD. |
Return value
Returns the handles of a technical indicator, in case of failure returns an empty string.
Sample
Public Sub main()AlertMessage (DetrenedPriceOscillator(0,1,14,1)) 'Draws the indicator on the chart and shows an Alert Message with the indicator name.End Sub
See Also