quantsupport 0.1.7

Rust quantitative finance library for derivatives pricing, yield-curve bootstrapping, AAD risk, Monte Carlo exposure, and XVA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Visitors that implement the XVA simulation pipeline.
//!
//! * [`PreprocessorExecutor`](preprocessorexecutor::PreprocessorExecutor) -- collects market-data requests from claims.
//! * [`MarketModel`](marketmodel::MarketModel) -- trait for Monte Carlo path generation.
//! * [`ExposureEvaluator`](exposureevaluator::ExposureEvaluator) -- computes NPV cubes,
//!   exposure profiles (EPE/ENE/EE), and optionally XVA values with sensitivities.

pub mod claimcompressionpreprocessor;
/// Claim preprocessing into simulation requests.
pub mod claimpreprocessor;
pub mod exposureevaluator;
/// Historical-fixing preprocessing.
pub mod fixingpreprocessor;
pub mod marketmodel;
pub mod preprocessorexecutor;