Enabling & Disabling Strategies
Each strategy has a toggle switch for enabling or disabling it.
- Enabled — The strategy processes incoming data (like new candles) and executes transitions, guards, and actions.
- Disabled — The strategy is turned off; no events are processed.
WARNING: When you disable a Strategy, it is reset back to its default state, along with all context variables once re-enabled. For Example, assume a Strategy SomeStrategy has 3 states, S1, S2 and S3, with an initial state of S1, and had a custom context variable counter with default value of 0. Lets say that SomeStrategy was presently on State S3, and had set the counter variable to 3. Once you Disable the strategy and it is renabled, the Strategy will return back to state S1 and counter will reset to default value 0.
Enable/Disable is a hard switch that controls whether events are routed to your strategy at all. Strategy Activation is a softer filter — the strategy stays enabled and retains its state, but activation rules decide which events get processed and which are silently skipped. Use activation when you want to restrict processing to specific time windows without resetting the strategy. See Strategy Activation for full details.
Deleting Strategies
To delete a strategy:
- Click Load Strategy in the sidebar to open the strategy browser.
- Click the trash icon on the tile of the strategy you want to remove.
- Confirm the deletion.
Deleted strategies are permanently removed.
WARNING: There's no undo. Duplicate a strategy within the workspace if you want to preserve its setup before deleting.