NumericRef (Reserved Word)

image\trumpet2.gif Disclaimer

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 expression passed by reference.

InputName(NumericRef);

Remarks

A function Input is declared as a NumericRef when it is passing in a numeric variable by reference.  Any changes to the value within the function will be reflected in the referenced value declared in the calling code.

Examples

Input: PassedRef(NumericRef);

Indicates that a numeric variable is being passed into the function by reference through the input PassedRef. Any change made to PassedRef in the function will be reflected in the caller.