Syntax
no
Description
The no reserved word is used as a value for the boolean input or as the false condition. In order to define the false condition, you can also use the 0 value.
Example
plot Price = if no then high else low;
Since the condition is always false, the low plot is always displayed.