RustyQLib is a lightweight quantitative finance library written entirely in Rust. It prices equity derivatives through JSON contracts (a stateless pricing service in a single binary) or as a Rust library, with an emphasis on numerically validated implementations: every pricer is cross-checked against independent oracles, put-call parity, replication identities and cross-engine agreement in the test suite.
- Four pricing engines — analytic closed forms, binomial tree, finite difference (log-spot Crank-Nicolson with Rannacher smoothing), and parallel Monte Carlo — behind one dispatch, so the same contract prices on any suitable engine.
- Three models — Black-Scholes, Dupire local volatility (calibrated non-parametrically from an implied vol surface), and Heston stochastic volatility (semi-analytic characteristic-function pricing + Monte Carlo).
- Market-standard infrastructure — discount curves with discount factors as the source of truth (flat / zero rates / discount factors / forward rates in, any compounding), volatility surfaces (flat, strike x expiry, moneyness, FX-style delta quotes), robust implied vol, day counts, term-structure-consistent PDE discounting.
- Payoffs: European & American vanillas, cash- and asset-or-nothing binaries, all eight barrier types (knock-in/out, up/down), Asian options (arithmetic / geometric, fixed / floating strike).
| Payoff | Analytic | Binomial | Finite difference | Monte Carlo |
|---|---|---|---|---|
| Vanilla European | Black-Scholes / Heston CF | yes | yes (grid Greeks) | yes (+ stderr) |
| Vanilla American | — | yes | Brennan-Schwartz | two-pass Longstaff-Schwartz |
| Binary (cash / asset) | closed form / Heston CF | yes | yes (Rannacher + cell averaging) | yes |
| Barrier (8 types) | Reiner-Rubinstein | — | absorbing boundary / parity | Brownian-bridge corrected |
| Asian (arith / geo, fixed / floating) | Turnbull-Wakeman / exact geometric | — | — | geometric control variate |
Model availability: local vol runs on the FD and MC engines; Heston runs on the analytic (vanilla + binary) and MC engines (all payoffs above except American).
- Finite difference: theta-scheme in log-spot with per-node, per-step coefficients (local vol ready), forward rates from the discount curve per time step, cell-averaged terminal conditions for digitals, barrier-aligned absorbing boundaries, and delta/gamma/theta read directly off the grid. Grid sizes are configurable per contract.
- Monte Carlo: deterministic per-path RNG streams (bit-reproducible under rayon parallelism), low-discrepancy sampling through a Brownian bridge, exact/Euler/Milstein stepping, antithetic + moment matching, geometric control variates for Asians, Brownian-bridge barrier monitoring, and standard errors reported with every price. Greeks via common-random-number bumps.
- Calibration workflow: quoted option prices -> robust implied vols (safeguarded Newton with arbitrage bounds) -> implied surface -> Dupire local vol -> reprice anything, including barriers under smile dynamics.
cargo build --release
# price a single JSON file of contracts
rustyqlib file --input contracts.json --output results.json
# price every JSON file in a directory (parallel)
rustyqlib dir --input contracts/ --output results/
# build an implied vol surface from quoted options
rustyqlib build --input quotes.json --output out/
# guided pricing in the terminal
rustyqlib interactiveVanilla European call priced analytically (a flat rate builds a flat curve):
{
"asset": "EQ",
"contracts": [{
"action": "PV", "asset": "EQ",
"product_type": {
"product_type": "option", "symbol": "ABC",
"underlying_price": 100.0, "put_or_call": "C", "payoff_type": "vanilla",
"strike_price": 100.0, "volatility": 0.3, "maturity": "2027-07-17",
"risk_free_rate": 0.05, "dividend": 0.0, "pricer": "Analytical"
}
}]
}The same contract can carry richer market data and model choices:
{
"discount_curve": { "type": "zero_rates", "tenors": [0.25, 1.0, "2029-07-17"],
"rates": [0.045, 0.05, 0.055], "compounding": "continuous" },
"vol_surface": { "type": "strike_expiry", "expiries": [0.5, 1.0],
"strikes": [90.0, 100.0, 110.0],
"vols": [[0.32, 0.30, 0.28], [0.33, 0.31, 0.30]] },
"mc_model": "heston",
"heston": { "v0": 0.09, "kappa": 2.0, "theta": 0.09, "vol_of_vol": 0.4, "rho": -0.7 },
"pricer": "MC", "simulation": 100000
}Selected fields (all optional unless noted):
| Field | Meaning |
|---|---|
pricer |
Analytical, Binomial, FD, MC |
payoff_type |
vanilla, binary, barrier, asian |
exercise_style |
European (default), American |
binary_type, cash_amount |
cash / asset, cash paid when ITM |
barrier_type, barrier_level |
up_in, up_out, down_in, down_out |
averaging_type, asian_strike_type |
arithmetic/geometric, fixed/floating |
discount_curve |
flat, zero_rates, discount_factors, forward_rates |
vol_surface |
flat, strike_expiry, moneyness_expiry, delta_expiry |
mc_model |
gbm (default), local_vol, heston (needs heston params) |
simulation, mc_time_steps, mc_scheme, mc_sampler, mc_seed |
Monte Carlo controls |
fd_spot_steps, fd_time_steps |
finite difference grid |
Working examples for every product live in src/examples/EQ/.
Monte Carlo outputs include the standard error (std_err) alongside price and Greeks.
use rustyqlib::equity::vanila_option::EquityOption;
use rustyqlib::core::data_models::EquityOptionData;
use rustyqlib::Instrument;
let contract: EquityOptionData = serde_json::from_str(r#"{
"symbol": "ABC", "underlying_price": 100.0,
"put_or_call": "C", "payoff_type": "vanilla",
"strike_price": 100.0, "volatility": 0.3,
"maturity": "2027-07-17", "risk_free_rate": 0.05,
"pricer": "Analytical"
}"#).unwrap();
let option = EquityOption::from_json(&contract);
println!("pv {:.6} delta {:.4}", option.npv(), option.delta());Lower-level building blocks are exported directly: YieldCurve, VolSurface,
DayCountConvention, the Payoff trait, Dupire LocalVol, HestonParams, and
the engine modules (blackscholes, binomial, finite_difference, montecarlo).
- Discount factors are state, rates are views — curves store pillar dfs; zero/forward rates in any compounding are derived on demand. Vol surfaces canonicalize every quoting style into per-expiry smiles with total-variance time interpolation.
- One payoff trait, every engine — payoffs implement
payoff(spot, strike)and (for path dependence)path_payoff(path, strike); adding a payoff makes it price on every compatible engine without engine changes. - Validated numerics — golden values against independently coded oracles, parity and replication identities at 1e-10, cross-engine agreement tests, and bit-reproducible Monte Carlo. Engines refuse unsupported combinations with a clear error instead of silently mispricing.
- Andersen QE scheme and American exercise (LSMC) under Heston; 2-D ADI finite difference for stochastic vol
- Barrier rebates, double/window barriers, seasoned Asians
- Rates: curve bootstrapping from deposits/FRAs/swaps onto the core curve type, swaps and swaptions; FX (Garman-Kohlhagen)
- SVI smile parameterization with no-arbitrage checks; pathwise / likelihood-ratio Greeks; multi-asset payoffs
Result-based error API for the library surface
MIT — see License.