Learn · Step 4

Create a component and reuse it

Package a repeated signal fragment, then build a second strategy that consumes it.

Do this

  1. Open Components → New and build a small reusable graph (for example, an RSI filter or ATR distance helper).
  2. Save the component.
  3. Create a second strategy under Strategies → New.
  4. Insert the component into that strategy's graph and finish wiring entry/exit so the strategy is runnable on its own.
  5. Save. You should now own two strategies: the simple one from step 2 and this component-backed one.

Why this matters

Components keep shared logic in one place. Editing a component can affect every strategy that uses it, so treat promotions carefully once bots depend on those strategies.

Next

Continue to Backtest on a different timeframe.