TrueFalse (Reserved Word)

image\trumpet2.gif Disclaimer

This reserved word is used to define the data type of an input to an EasyLanguage function. While it may be possible to create EasyLanguage code for a study (indicator, PaintBar, strategy, etc.) that will verify (compile) and that uses this reserved word, this reserved word is intended for use only in EasyLanguage functions. This reserved word is used to define a function input that is a true-false expression passed by value.

TrueFalse

Remarks

TrueFalse can be used for inputs that can be either TrueFalseSimple or TrueFalseSeries.

Examples

Input: MySwitch(TrueFalse);

declares the constant Switch as a true-false value to be used in a function.

Input: Flag(TrueFalse);

declares the constant Flag as a true-false value to be used in a function.