Syntax
Public Sub RelativeStrengthIndexOnArray(Ary As Variant, Period As Integer, ByRef result As Variant)
Description
A procedure that calculates the Relative strength index 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 prices buffer, the value of type variant |
ResultPeriod | The calculation period on which the indicator will be calculated, a value of type Integer |
Result | The buffer calculation result, a value of type variant |
Sample
Public Sub main() Dim OpenAry() Dim vResult() CopyClose 0, 1, Bars (0), OpenAry RelativeStrengthIndexOnArray OpenAry, 14, vResult AlertMessage "The indicator value of the record 50 : " & vResult(50)End Sub
See Also