NumericArrayRef (Reserved Word)
This reserved word is used to define the data type of an input to an EasyLanguage function. This reserved word is for use in EasyLanguage functions only, and not for use in EasyLanguage studies (indicators, PaintBars, strategies, etc.) This reserved word is used to define a function input that is a numeric array passed by reference.
InputName(NumericArrayRef);
Remarks
A function Input is declared as a NumericArrayRef when it is passing in a numeric array by reference.
Examples
Input: PassedValues[n](NumericArrayRef);
indicates that a numeric array is being passed into the function by reference through the Input PassedValues.