MomentumOnArray
Posted by Mohammad Rahhal, Last modified by Diana Alkouni on 21 August 2020 01:34 PM

Syntax

Public Sub MomentumOnArray (Ary As Variant, Period As Integer, ByRef result As Variant)

Description

A procedure that calculates the Momentum indicator 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, a value of type variant
Result Period The calculation period on which the indicator will be calculated, the 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

        MomentumOnArray OpenAry, 14, vResult

        AlertMessage "The indicator value of the record 50 : " & Result(50)

End Sub

 
 

See Also


Back to VTL Client Script Index

(0 vote(s))
Helpful
Not helpful

Comments (0)
Post a new comment
 
 
Full Name:
Email:
Comments:
CAPTCHA Verification 
 
Please enter the text you see in the image into the textbox below (we use this to prevent automated submissions).

Help Desk Software by Hybrid Solutions