Module v1

Source
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.

Modules§

atr
ATR Module
bollinger
Bollinger Bands Module
ema
EMA Module
ma
Moving Averages Module
macd
MACD Module
momentum
Momentum Module
roc
ROC Module
rsi
RSI Module
sma
SMA Module
stochastic
Stochastic Oscillator Module
support_resistance
Support & Resistance Module
types