2026-01-28 06:30:03 +05:30
|
|
|
//! Strategy implementations for different backtest types.
|
|
|
|
|
|
|
|
|
|
pub mod basket;
|
|
|
|
|
pub mod multi;
|
|
|
|
|
pub mod options;
|
|
|
|
|
pub mod pairs;
|
|
|
|
|
pub mod single;
|
2026-02-02 04:24:45 +05:30
|
|
|
pub mod spreads;
|
2026-01-28 06:30:03 +05:30
|
|
|
|
|
|
|
|
pub use basket::BasketBacktest;
|
|
|
|
|
pub use multi::MultiStrategyBacktest;
|
|
|
|
|
pub use options::OptionsBacktest;
|
|
|
|
|
pub use pairs::PairsBacktest;
|
|
|
|
|
pub use single::SingleBacktest;
|
2026-02-02 04:24:45 +05:30
|
|
|
pub use spreads::{
|
|
|
|
|
LegConfig, OptionType as SpreadOptionType, SpreadBacktest, SpreadConfig, SpreadType,
|
|
|
|
|
};
|