Skip to main content

mantis_ta/
lib.rs

1pub mod indicators;
2pub mod prelude;
3pub mod types;
4
5#[cfg(feature = "strategy")]
6pub mod strategy;
7
8// Placeholder module for future features (v0.3.0+)
9#[cfg(feature = "backtest")]
10pub mod backtest;
11
12// Internal utilities
13pub(crate) mod utils;