indicators-ta 0.1.3

Technical analysis indicators and market regime detection for algorithmic trading
Documentation
1
2
3
4
5
6
7
8
9
//! Thin re-export of crate-level types used by regime detector internals.
//!
//! Detector modules (detector, ensemble, hmm, primitives) use `super::types::`
//! to reference these types. This file satisfies that path without requiring
//! each file to be updated when the module is reorganised.

pub use crate::types::{
    MarketRegime, RecommendedStrategy, RegimeConfidence, RegimeConfig, TrendDirection,
};