volsurf 0.3.0

Production-ready volatility surface library for derivatives pricing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Implied volatility extraction from option prices.
//!
//! Provides three models for extracting implied volatility:
//!
//! - [`BlackImpliedVol`] — Standard Black (lognormal) model via Jäckel's algorithm
//! - [`NormalImpliedVol`] — Bachelier (normal) model for fixed income / short-dated FX
//! - [`DisplacedImpliedVol`] — Displaced diffusion hybrid (interpolates normal ↔ Black)

pub mod black;
pub mod displaced;
pub mod normal;

pub use black::{BlackImpliedVol, black_price};
pub use displaced::{DisplacedImpliedVol, displaced_price};
pub use normal::{NormalImpliedVol, normal_price};