Syntax
Public Sub ComparativeRelativeStrengthOnArray(ByVal Ary1 As Variant,ByVal Ary2 As Variant ,ByRef Result As Variant)
Description
A procedure that calculates Comparative Relative Strength 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 |
| Ary1 | The source array, that contains prices |
| Ary2 | The source array, that contains prices |
| Result | The Result Array |
Return value
Returns a double value.
Sample
Public Sub main() Dim ary1 () Dim ary2 () Dim result() CopyClose 0, 1, Bars (0), Ary1 CopyOpen 0 ,1, Bars (0) , Ary2 ComparativeRelativeStrengthOnArray Ary1,Ary2,Result AlertMessage "The indicator value of the record 50 : " & Result(50)End Sub
See Also