libitofin 0.6.1

A ground-up Rust port of QuantLib: quantitative-finance primitives for pricing, risk, and numerical methods.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Concrete short-rate calibration helpers.
//!
//! Port of `ql/models/shortrate/calibrationhelpers/`. Each helper is a
//! [`BlackCalibrationHelper`](crate::models::calibrationhelper::BlackCalibrationHelper)
//! that compares a market price (implied by a quoted volatility) against the
//! price a short-rate model produces, so a calibration cost function can drive
//! the model onto the market.

pub mod caphelper;
pub mod swaptionhelper;

pub use caphelper::CapHelper;
pub use swaptionhelper::SwaptionHelper;