Logical operator “OR”. Used for testing different conditions on the same statement.
Syntax:
1 |
OR |
Example:
1 2 3 4 5 6 7 8 9 |
i1 = lowest[10](close) IF (close[1]<i1 OR low[1]<i1) THEN result = 1 ELSE result = 0 ENDIF RETURN result |