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
//! # Options Market Indicators
//!
//! This module provides indicators specialized for options markets.
//!
//! ## Available Indicator Groups
//!
//! - [`implied_volatility`](implied_volatility/index.html): Indicators based on implied volatility analysis
//! - [`greeks`](greeks/index.html): Indicators and calculations for option Greeks

pub mod greeks;
pub mod implied_volatility;

// Re-export common types and functions for convenient access
pub use greeks::GreeksCalculator;
pub use implied_volatility::IVSurface;