StringSeries (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 text string value that has historical values available (series).
InputName(StringSeries);
Remarks
StringSeries is used for inputs whose values can be referred to historically.
Examples
Input: MyMessage(StringSeries);
declares the constant MyMessage as a text string to be used in a function, where historical values of MyMessage are available.
Input: NewMessage(StringSeries);
declares the constant NewMessage as a text string to be used in a function, where historical values of NewMessage are available.