lt
Less than comparison (<)
lt(left, right)
Parameters
| Name | Type | Description |
|---|---|---|
left |
field | Left-hand operand |
right |
field | Right-hand operand |
Formula
result = (left < right)
Examples
// close below open (red bar)
lt(close, open);
Returns
bool
Notes
Internal comparison operator. Returns TRUE when left is less than right, FALSE otherwise.