Initial backtesting engine

This commit is contained in:
porcelaincode
2026-01-28 06:30:03 +05:30
commit f6c60d7b8b
53 changed files with 13632 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
//! Core types and utilities for RaptorBT.
pub mod error;
pub mod timeseries;
pub mod types;
pub use error::{RaptorError, Result};
pub use timeseries::TimeSeries;
pub use types::*;