Build a Strategy in the DAG Editor
Use the visual DAG editor to wire a complete signal pipeline from data source to entry/exit rules, then run an inline backtest.
The Strategy Builder is a visual, code-free environment for composing custom trading strategies. You connect blocks — data sources, indicators, filters, logic operators, and entry/exit rules — to create a signal pipeline. This guide builds a minimal working strategy from scratch.
Open the Strategy Builder
Start from a template (recommended for first build)
Add a Data Source node
Add an Indicator node
Add a Threshold Filter
Add Logic operators if needed
Add an Entry node
Add an Exit node
Validate the DAG
Run an inline backtest
Save as Draft
Activate
Use templates as starting points rather than building from scratch. The block library has 200+ nodes — templates show you which combinations actually produce coherent strategies. Modify a template's parameters rather than wiring a completely new DAG for your first strategy.
Connecting a wrong output type to an input (e.g. plugging a price signal into a boolean logic input) will cause a validation error. The validator will tell you exactly which connection is invalid — don't ignore red highlights.
What's Next