Documentation/Quick start

Build your first strategy in 3 minutes

From template to backtest report.

1. Pick a template

Open New Strategy and choose Single moving average. The editor opens with a six-node pipeline already connected.

2. Adjust the logic

Click Data extraction & processing to see the factor code, then click Strategy type to edit entry and exit conditions:

ma100 = ta_ma(close, 100)
closeout = close

# Long entry
closeout > ma100
# Long exit
closeout < ma100

3. Run

Press Run. The strategy is uploaded, the backtest runs on the free machine and the report opens at the bottom with the return curve, orders and logs.