Expand description
§Technical Indicators
This module provides technical indicators organized in multiple ways:
- By asset class - specialized indicators optimized for specific markets
- By indicator type - traditional categorization of technical indicators
- By timeframe - indicators optimized for different trading timeframes
§Asset-Specific Indicator Modules
§Traditional Indicator Categories
moving_averages
: Trend-following indicators that smooth price dataoscillators
: Indicators that fluctuate within a bounded rangevolatility
: Indicators that measure the rate of price movementvolume
: Indicators based on trading volumetrend
: Indicators designed to identify market directionmomentum
: Indicators that measure the rate of price changecycle
: Indicators that identify cyclical patterns in pricepattern_recognition
: Indicators that identify chart patternsprice_transform
: Indicators that transform price datastats
: Statistical indicatorsmath
: Mathematical utility functions
§Timeframe-Specific Indicator Modules
day_trading
: Indicators optimized for intraday tradingshort_term
: Indicators optimized for short-term trading (days to weeks)long_term
: Indicators optimized for long-term analysis (weeks to months)
Re-exports§
pub use add_indicators::add_technical_indicators;
pub use momentum::calculate_roc;
pub use moving_averages::calculate_ema;
pub use moving_averages::calculate_sma;
pub use moving_averages::calculate_vwap;
pub use moving_averages::calculate_wma;
pub use oscillators::calculate_macd;
pub use oscillators::calculate_rsi;
pub use volatility::calculate_atr;
pub use volatility::calculate_bollinger_bands;
pub use volume::calculate_cmf;
pub use volume::calculate_mfi;
pub use volume::calculate_obv;
pub use options::greeks;
pub use options::implied_volatility;
pub use stock::fundamental;
pub use stock::price_action;
Modules§
- add_
indicators - cycle
- day_
trading - Day Trading Indicators
- long_
term - Long-Term Trading Indicators
- math
- momentum
- moving_
averages - options
- Options Market Indicators
- oscillators
- pattern_
recognition - price_
transform - short_
term - Short-Term Trading Indicators
- stats
- stock
- Stock Market Indicators
- test_
util - trend
- volatility
- volume