Function - _IFF
Conditional Statement |
Advanced
|
| SYNTAX |
_iff( ARRAY condition, ARRAY if_true, ARRAY if_false) |
| RETURNS |
Special |
| DESCRIPTION |
Returns the first expression value if conditional expression is TRUE, otherwise returns the second expression value |
| ADDITIONAL INFO |
|
| EXAMPLE |
_iff(_perf(close) > 20, 1, 0) |
| |