quantsupport 0.1.5

Rust library for derivative pricing and risk analytics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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;
pub mod claimpreprocessor;
pub mod exposureevaluator;
pub mod fixingpreprocessor;
pub mod marketmodel;
pub mod preprocessorexecutor;