ne
Not equal comparison (!=)
ne(left, right)
Parameters
| Name | Type | Description |
|---|---|---|
left |
field | Left-hand operand |
right |
field | Right-hand operand |
Formula
result = (left <> right)
Examples
// close different from yesterday
ne(close, close[1]);
Returns
bool
Notes
Internal comparison operator. Returns TRUE when left does not equal right, FALSE otherwise.