Node reference
NOT
Inverts a boolean — true becomes false and vice-versa.
Rev. 2026.06
NOTcondition
InputsOutputsNOT
Input
in · boolean
Result
main · boolean
What it does
Flips its single boolean input, so you can express 'when NOT in a state' without a second condition.
What happens
Evaluated every candle over its resolved inputs and emits true or false. A missing input is treated as false, never an error.
When to use
Negating a condition (e.g. NOT overbought).
Gotchas
- Wire exactly one boolean input.