Syntax
Public Sub RegressionOnArray(ByVal Ary As Variant, ByVal Period As Integer, ByRef Result As Variant, ByVal Mode As REGRESSIONEnum)
Description
A procedure that calculates Regression 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 |
Result | The Result Array |
Mode | An integer value of type REGRESSIONEnum |
Return value
Returns a double value.
Sample
Public Sub main() Dim Ary() Dim result() Dim Period Dim Mode Period = 14 Mode = 1 CopyClose 0, 1, Bars (0),Ary RegressionOnArray Ary, CInt (Period), Result, CInt (mode) AlertMessage "The indicator value of the record 50 :" & Result(50)End Sub
See Also