Create a component and reuse it
Package a repeated signal fragment, then build a second strategy that consumes it.
Do this
- Open Components → New and build a small reusable graph (for example, an RSI filter or ATR distance helper).
- Save the component.
- Create a second strategy under Strategies → New.
- Insert the component into that strategy's graph and finish wiring entry/exit so the strategy is runnable on its own.
- 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.