stochastic-rs-quant 2.6.0

Quantitative finance: pricing, calibration, vol surfaces, instruments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Malliavin-weighted Greeks
//!
//! $$
//! \Delta=\mathbb E\!\left[e^{-rT}\Phi(S_T)\,\frac{W_T}{S_0\sigma T}\right]
//! $$
//!

mod gbm;
mod heston;
mod heston_el_khatib;

pub use gbm::GbmMalliavinGreeks;
pub use heston::HestonMalliavinGreeks;

#[cfg(test)]
mod tests;