Syntax
Public Sub AroonOnArray(ByVal Ary As Variant, ByVal Period As Integer, ByRef Result As Variant, ByVal mode As INDICATOR_LINES)
Description
A procedure that calculates Aroon, based on a custom array, and the result passed by result parameter as an array, each index of the result array represent indicator value corresponds to that index of the source array.
Parameters
Parameter | Description |
Ary | The source array, that contains prices |
Period | Period as an integer value |
MA_Type | An integer value of typeENUM_MA_METHOD |
Result | The Result Array |
Mode | An integer value of type INDICATOR_LINES |
Return value
Returns a double value.
Sample
Public Sub main() Dim ary() Dim result() Dim Period Dim Mode Dim MA_Type Period = 14 MA_Type = 1 Mode = 1 CopyClose 0, 1, Bars (0), Ary AroonOnArray Ary, CInt (Period), Result, CInt (mode) AlertMessage "The indicator value of the record 50 : " & Result(50)End Sub
See Also