Instruction used to call the second conditions of “IF” conditionnal statements.
Syntax:
1 |
ELSE |
Example:
1 2 3 4 5 6 |
if(High > High[1]) THEN result = 1 ELSE // if High is not superior of last High result = -1 ENDIF |