rsta 0.0.3

Rust Statistical Technical Analysis (RSTA) - A library for financial technical analysis indicators
Documentation
//! Momentum indicators
//!
//! This module contains indicators that measure the rate of change or momentum of price movements.
//! These include the Relative Strength Index (RSI), Stochastic Oscillator, Williams %R,
//! and the Commodity Channel Index (CCI).
//!
//! Momentum indicators are useful for identifying overbought and oversold conditions,
//! trend strength, and potential reversals.

pub mod cci;
pub mod rsi;
pub mod stochastic_oscillator;
pub mod williams_r;

// Re-export public types to maintain the same interface
pub use self::cci::Cci;
pub use self::rsi::Rsi;
pub use self::stochastic_oscillator::{StochasticOscillator, StochasticResult};
pub use self::williams_r::WilliamsR;