Initial backtesting engine
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
//! Strategy implementations for different backtest types.
|
||||
|
||||
pub mod basket;
|
||||
pub mod multi;
|
||||
pub mod options;
|
||||
pub mod pairs;
|
||||
pub mod single;
|
||||
|
||||
pub use basket::BasketBacktest;
|
||||
pub use multi::MultiStrategyBacktest;
|
||||
pub use options::OptionsBacktest;
|
||||
pub use pairs::PairsBacktest;
|
||||
pub use single::SingleBacktest;
|
||||
Reference in New Issue
Block a user