Learn · Step 2

Create your first strategy

Author a simple long-capable strategy you can backtest and later attach to a bot instance.

Do this

  1. Open Strategies → New.
  2. Name it clearly (for example, Path RSI Long).
  3. On the entry tab, add indicator and logic nodes, then wire an enter_long output.
  4. On the exit tab, wire an exit_position path (or enable a simple percent / ATR take-profit and stop-loss).
  5. Save so a version exists. You do not need a perfect edge for this path.

Why this matters

A strategy is only a definition. Nothing runs until you backtest it or attach it to a bot execution. Keep this first strategy simple so later steps stay readable.

Next

Continue to Run your first backtest.