Condition1-99 (Reserved Word)

image\trumpet2.gif Disclaimer

This reserved word refers to pre-declared variables in EasyLanguage that can be used to store a true-false condition from a calculation or an expression.

A variable is a name that represents a stored true-false value that was assigned from another condition or calculation so that you can reference it later in your code.  In EasyLanguage, you can think of a condition variable as storage containers that hold a true-false value.

  EasyLanguage provides you with 100 pre-declared numerical variables (Value0 through Value 99) and 100 pre-declared true/false variables (Condition0 through Condition99).

Examples

Condition1 = Close > High ;

Stores the true-false value of the expression. In this case, Condition1 will be set to true if the closing price is greater than the high price, and will be set to false if the closing price is less than the high.

Related Topics

Variables