← Back to Docs

STRATEGY WORKBENCH

The workbench (/dashboard/strategies/[id]/workbench) is an interactive Python editor for iterating on a strategy. It runs code against the same Azure Dynamic Session sandbox used for backtests. It is gated behind FEATURE_ENABLE_WORKBENCH.

What You Can Do

  • Edit your Strategy subclass with live syntax feedback.
  • Execute code in the sandbox to inspect intermediate values from ctx.data and ctx.ops.
  • Iterate quickly before committing to a full backtest.

Sandbox & Safety

Code runs under the same isolation as production execution — no platform secrets, untrusted output. See the Security Model.

Related: Strategy API and Quickstart.