rustalib 1.0.9

A library of technical indicators for financial analysis, similar to TA-Lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Stock Market Indicators
//!
//! This module provides indicators specialized for stock/equity markets.
//!
//! ## Available Indicator Groups
//!
//! - [`price_action`](price_action/index.html): Indicators based on price action specific to stocks
//! - [`fundamental`](fundamental/index.html): Indicators incorporating fundamental data with technical indicators

pub mod fundamental;
pub mod price_action;

// Re-export common types and functions for convenient access
pub use fundamental::FundamentalIndicators;
pub use price_action::StockPricePatterns;