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. That opens the same builder as an existing strategy, not a name-only form.
- 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). - Name is optional while you work. A clear name such as
Path RSI Longhelps later, but you can leave the title blank. - Save so a version exists. If the name is still blank, Tradee assigns a playful placeholder. 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.