Stands for “Else If” (to be used inside of conditionnal loop).
Syntax:
1 |
ELSIF |
Example:
1 2 3 4 5 6 7 8 9 10 11 |
myDPO = DPO[21](typicalprice) if(myDPO<0) THEN result = result - 1 ELSIF(myDPO>0) THEN result = result + 1 ELSE result = result ENDIF RETURN result COLOURED(124,252,0) |