Notebook Demo¶
Use this page for a lightweight interactive workflow without exported notebook assets.
It demonstrates:
- package installation and environment setup
- running a packaged example strategy via CLI
- iterating on a local custom strategy with the repo research helper
- validating, backtesting, and exporting with CLI commands
- inspecting generated artifacts under
output/<strategy_id>/<version>/<run_id>/
Suggested interactive flow¶
- Follow Quickstart to install and verify environment.
- Run a packaged example strategy:
stacksats strategy backtest \
--strategy simple-zscore \
--start-date 2024-01-01 \
--end-date 2024-12-31 \
--output-dir output
Built-in strategy catalog: Strategies.
- For local custom model work, use the research helper:
python scripts/research_strategy.py \
--strategy my_strategy.py:MyStrategy \
--strategy-config examples/strategy_configs/first_strategy_run.example.json \
--start-date 2024-01-01 \
--end-date 2024-12-31
- Run the lifecycle commands from Command Index:
stacksats strategy validate ...stacksats strategy backtest ...stacksats strategy export ...
Why no hosted notebook export?¶
Notebook exports were removed from the maintained docs flow to avoid stale generated assets and outdated paths.
Next step¶
- Use First Strategy Run to implement your own strategy class.