NumericSimple (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 value without history available (simple).
InputName(NumericSimple);
Remarks
NumericSimple can not be used for inputs whose values can be referred to historically.
Examples
Input: Price(NumericSimple);
declares the constant Price as a Numeric value to be used in a function, restricting Price to be a value that does not contain historical values.
Input: Length(NumericSimple);
declares the constant Length as a Numeric value to be used in a function, restricting Length to be a value that does not contain historical values.