Expand description
§Version 1
This module groups all the technical indicators and shared types under version 1 of the
indexes_rs
library. The structure is as follows:
- atr: Implements the Average True Range (ATR) indicator.
- bollinger: Implements Bollinger Bands.
- ema: Implements the Exponential Moving Average (EMA) indicator.
- ma: Provides a unified interface for multiple moving averages (SMA, EMA, MACD).
- macd: Implements the MACD (Moving Average Convergence Divergence) indicator.
- rsi: Implements the Relative Strength Index (RSI) indicator.
- sma: Implements the Simple Moving Average (SMA) indicator.
- roc: Implements the Rate of Change (ROC) indicator.
- momentum: Implements the Momentum indicator.
- stochastic: Implements the Stochastic Oscillator indicator.
- support_resistance: Implements Support & Resistance indicators.
- types: Contains shared types (structs, enums) used throughout the library.