Create your first strategy
Author a simple long-capable strategy you can backtest and later attach to a bot instance.
Do this
- Open Strategies → New.
- Name it clearly (for example,
Path RSI Long). - On the entry tab, add indicator and logic nodes, then wire an
enter_longoutput. - On the exit tab, wire an
exit_positionpath (or enable a simple percent / ATR take-profit and stop-loss). - 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.