Node Reference
- OHLCV
Data — The starting point of every graph — outputs each bar's open/high/low/close price as a series - HTF Indicator
Higher TF — Computes an indicator on a larger timeframe (H4/D1), then feeds the value down to the primary TF — auto shift(1) prevents lookahead - Indicator
Indicator — Computes a standard indicator from price (or from another series via in-series) — see the exact formula in the Indicator Guide - Session / Block Hours
Time — A time condition — true/false based on the bar's hour (reads the timestamp directly, no input needed) - Math
Math — Arithmetic between two series (or a series and the const_b constant when in-b is not connected) - Lag (N bars)
Math — The value N bars ago — series.shift(n) - Candle
Bar — Candlestick properties — body size, body/range ratio, upper/lower wick, bar direction - Compare
Condition — Compares two series per bar — a > b, a < b, or crossing - Threshold
Condition — Compares a series against a constant — ADX > 25, RSI < 30 - Range
Condition — true when the value falls within [lo, hi] (inclusive) - Cross
Condition — true only on "the bar where the cross happens" — a crosses up/down through b (stateful, unlike Compare which stays true every bar) - Logic Gate
Logic — Combines boolean conditions — AND / OR / NOT - SL Calc
Output — Computes the stop-loss "distance" (not a price) — SignalNode converts it to a price based on direction - TP Calc
Output — Computes the take-profit "distance" — rr mode ties it to the SL distance automatically (recommended) - Signal
Output — The graph's endpoint — combines trigger + SL + TP into an entry order (every strategy needs at least 1)