mantis-ta 0.6.1

Composable technical analysis and strategy engine for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod indicators;
pub mod prelude;
pub mod types;

#[cfg(feature = "strategy")]
pub mod strategy;

// Placeholder module for future features (v0.3.0+)
#[cfg(feature = "backtest")]
pub mod backtest;

// Internal utilities
pub(crate) mod utils;