Syntax
Public Sub MassIndexOnArray(ByVal OpenAry As Variant, ByVal HighAry As Variant, ByVal LowAry As Variant, ByVal CloseAry As Variant,ByVal Period As Integer ,ByRef Result As Variant)
Description
A procedure that calculates Mass 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 |
The open array | |
HighAry | The High array |
The Low array | |
CloseAry | The Close array |
Period | Period as an integer value |
Result | The Result Array |
Return value
Returns a double value.
Sample
Public Sub main() Dim OpenAry() Dim HighAry() Dim LowAry() Dim CloseAry() Dim result() Dim Period Period = 14 CopyClose 0, 1, Bars (0), CloseAry CopyHigh 0, 1, Bars (0), HighAry CopyOpen 0, 1, Bars (0), OpenAry CopyLow 0, 1, Bars (0), LowAry MassIndexOnArray OpenAry, HighAry, LowAry, CloseAry, CInt(Period), Result AlertMessage "The indicator value of the record 50 : " & Result(50)End Sub
See Also