Node reference
Condition (compound)
Build any condition in one node — compare, between, cross, AND/OR/NOT.
Rev. 2026.06
Conditioncondition
No inputsOutputsCondition
Result
main · boolean
What it does
Expresses multi-clause logic in a single node instead of wiring many separate condition nodes.
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
When one decision needs several clauses combined (e.g. RSI < 30 AND price > EMA).
Gotchas
- Clause grouping changes the result — check how AND/OR are combined.