Core Concepts

A node graph builds a trading strategy from small boxes — data flows from left to right. Each node takes a value in, transforms it, and passes it on. Every node evaluates "per bar" (it computes one value for every bar in the backtest range).

Ports come in 2 types, distinguished by color: numeric = a per-bar number (price, EMA, ATR, SL distance), and boolean = a per-bar true/false (a condition, a trigger).

Recommended path for newcomers: open the EMA Cross (Long) template from the dropdown ▾ next to the + button on Builder, then read through it node by node alongside the Recipes section below.