Skip to main content

schwab_cli/agent/backtest/
mod.rs

1//! Options historical backtest (synthetic BS marks over Schwab underlying bars).
2
3pub mod bs;
4pub mod cache;
5pub mod prefetch;
6pub mod report;
7pub mod runner;
8pub mod synth;
9
10pub use prefetch::prefetch_daily_bars;
11pub use report::build_backtest_report;
12pub use runner::{run_backtest, BacktestRunOptions};