Syntax
Public Sub ParabolicSAROnArray(ByVal OpenAry As Variant, ByVal HighAry As Variant, ByVal LowAry As Variant, ByVal CloseAry As Variant, ByRef Result As Variant, Optional ByVal MinAF As Double = 0.02, Optional ByVal MaxAF As Double = 0.2)
Description
A procedure that calculates ParabolicSAR, 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 |
The open array | |
HighAry | The High array |
The low array | |
CloseAry | The close array |
Result | The Result Array |
MinAF | Min AF (accumulation factor) |
Max AF (accumulation factor) |
Return value
Returns a double value.
Sample
Public Sub main() Dim HighAry () Dim LowAry () Dim OpenAry () Dim CloseAry () Dim result() Dim MinAF Dim MaxAF MinAF = 0.02 MaxAF = 0.2 CopyHigh 0, 1, Bars (0), HighAry CopyLow 0, 1, Bars (0), LowAry CopyOpen 0, 1, Bars (0), OpenAry CopyClose 0, 1, Bars (0), CloseAry ParabolicSAROnArray (OpenAry, HighAry, LowAry, CloseAry, Result, Cdbl(MinAF),Cdbl(MaxAF)) AlertMessage "The indicator value of the record 50 : " & Result(50)End Sub
See Also