finquant 0.0.59

Experimental Rust Quant Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
//! Moments of the Cox–Ingersoll–Ross (CIR) square-root diffusion.
//!
//! ```text
//!     dσ(t) = κ ( σ̄ − σ(t) ) dt + γ √σ(t) dW(t),      σ(0) = σ₀
//! ```
//!
//! Used as the variance process in the Heston FX model of Grzelak &
//! Oosterlee (§2, eq. 2.11). The linearised semi-closed-form pricing
//! approximation (FX-HHW1) requires `E[√σ(t)]`, which the paper expresses
//! through the non-central chi-squared distribution of `σ(t)` — see
//! eq. (2.30)–(2.31).
//!
//! Closed form (GO §2.3):
//!
//! ```text
//!     σ(t) / c(t)  ~  χ²( ℓ , ε(t) )         (non-central chi-squared)
//!
//!     c(t) = γ² (1 − e^{−κt}) / (4κ)
//!     ℓ    = 4 κ σ̄ / γ²
//!     ε(t) = 4 κ σ₀ e^{−κt} / ( γ² (1 − e^{−κt}) )
//!
//!     E[√σ(t)] = √(2c(t)) · e^{−ε(t)/2}
//!                · Σ_{k≥0}  (ε(t)/2)^k / k!  ·  Γ((ℓ+1)/2 + k) / Γ(ℓ/2 + k)
//! ```
//!
//! The series converges exponentially fast (term ratio ~ `ε/(2k)`), so
//! truncation at 1e-16 is usually achieved inside ~50 terms.
//!
//! An exponential proxy `β₁ + β₂·exp(−β₃·t)` (GO eq. 2.32) is also
//! provided for cheap repeated evaluation inside the forward-ChF
//! integrand.

use crate::models::common::simulation::SimulationModel;
use rand::{Rng, SeedableRng};
use rand_chacha::ChaCha20Rng;
use rand_distr::StandardNormal;
use statrs::function::gamma::ln_gamma;

/// Parameters of the CIR variance process.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct CirProcess {
    /// Mean-reversion speed κ > 0.
    pub kappa: f64,
    /// Long-run mean σ̄ > 0.
    pub theta: f64,
    /// Vol-of-vol γ > 0.
    pub gamma: f64,
    /// Initial value σ(0) ≥ 0.
    pub sigma_0: f64,
}

impl CirProcess {
    /// `E[σ(t)] = σ₀·e^{−κt} + σ̄·(1 − e^{−κt})`.
    pub fn mean(&self, t: f64) -> f64 {
        if t <= 0.0 {
            return self.sigma_0;
        }
        let decay = (-self.kappa * t).exp();
        self.sigma_0 * decay + self.theta * (1.0 - decay)
    }

    /// `Var[σ(t)] = σ₀·(γ²/κ)·e^{−κt}·(1 − e^{−κt})
    ///              + σ̄·(γ²/(2κ))·(1 − e^{−κt})²`.
    pub fn variance(&self, t: f64) -> f64 {
        if t <= 0.0 {
            return 0.0;
        }
        let decay = (-self.kappa * t).exp();
        let g2_over_k = self.gamma * self.gamma / self.kappa;
        let one_minus = 1.0 - decay;
        self.sigma_0 * g2_over_k * decay * one_minus
            + self.theta * (g2_over_k * 0.5) * one_minus * one_minus
    }

    /// `E[√σ(t)]`, via the non-central chi-squared series (GO eq. 2.30).
    ///
    /// Accurate to `tol` (default 1e-14); returns `√σ₀` exactly for `t ≤ 0`
    /// since `σ(0) = σ₀` is deterministic and the series is singular there
    /// (`ε(0) → ∞`). Panics if the CIR coefficients are degenerate
    /// (`κ = 0` or `γ = 0`).
    pub fn sqrt_mean(&self, t: f64) -> f64 {
        self.sqrt_mean_tol(t, 1.0e-14)
    }

    /// Same as [`Self::sqrt_mean`] with an explicit truncation tolerance.
    pub fn sqrt_mean_tol(&self, t: f64, tol: f64) -> f64 {
        if t <= 0.0 {
            return self.sigma_0.max(0.0).sqrt();
        }
        assert!(self.kappa > 0.0, "CIR: κ must be positive");
        // γ → 0 degenerate limit: the variance is deterministic,
        //     σ(t) = σ₀·e^{−κt} + σ̄·(1 − e^{−κt}),
        // so E[√σ(t)] = √σ(t) exactly.
        if self.gamma.abs() < 1.0e-14 {
            return self.mean(t).max(0.0).sqrt();
        }

        let one_minus = 1.0 - (-self.kappa * t).exp();
        let c = self.gamma * self.gamma * one_minus / (4.0 * self.kappa);
        let ell = 4.0 * self.kappa * self.theta / (self.gamma * self.gamma);
        let eps = 4.0 * self.kappa * self.sigma_0 * (-self.kappa * t).exp()
            / (self.gamma * self.gamma * one_minus);

        // Small-`t` asymptotic fallback. `ε(t) → ∞` as `t → 0⁺` because the
        // non-central chi-squared concentrates on the deterministic initial
        // point; the exact series `Σ (ε/2)^k e^{−ε/2}` then overflows
        // numerically before the exponential kill can cancel it. For
        // `ε ≳ 500` the variance is negligible, so use the second-order
        // Taylor expansion `E[√σ] ≈ √μ · (1 − Var[σ] / (8·μ²))` with
        // `μ = E[σ(t)]`.
        if eps > 500.0 {
            let m = self.mean(t).max(1.0e-300);
            let v = self.variance(t);
            return (m * (1.0 - v / (8.0 * m * m))).max(0.0).sqrt();
        }

        // Σ_{k≥0}  (ε/2)^k / k!  · Γ((ℓ+1)/2 + k) / Γ(ℓ/2 + k).
        // Use log-space for the gamma ratio to avoid overflow when ℓ is
        // large, and accumulate ratios incrementally:
        //     a_{k+1} = a_k · (ε/2) / (k+1) · Γ((ℓ+1)/2+k+1)/Γ((ℓ+1)/2+k)
        //                              / [Γ(ℓ/2+k+1)/Γ(ℓ/2+k)]
        //             = a_k · (ε/2) / (k+1) · ((ℓ+1)/2+k) / (ℓ/2+k).
        let half_eps = 0.5 * eps;
        let a = 0.5 * ell;
        let b = 0.5 * (ell + 1.0);

        // First term (k = 0): Γ((ℓ+1)/2) / Γ(ℓ/2), computed via log-gamma.
        let mut term = (ln_gamma(b) - ln_gamma(a)).exp();
        let mut sum = term;
        let mut k = 0_u32;
        loop {
            let k_next = k + 1;
            let ratio = half_eps * (b + k as f64) / ((k_next as f64) * (a + k as f64));
            term *= ratio;
            sum += term;
            if term.abs() <= tol * sum.abs() || k_next > 2000 {
                break;
            }
            k = k_next;
        }
        (2.0 * c).sqrt() * (-0.5 * eps).exp() * sum
    }

    /// Asymptotic limit `E[√σ(∞)] = (γ / √(2κ)) · Γ((ℓ+1)/2) / Γ(ℓ/2)`.
    /// Useful for anchoring the exponential proxy.
    pub fn sqrt_mean_infinity(&self) -> f64 {
        assert!(self.kappa > 0.0, "CIR: κ must be positive");
        assert!(self.gamma > 0.0, "CIR: γ must be positive");
        let ell = 4.0 * self.kappa * self.theta / (self.gamma * self.gamma);
        let gamma_ratio = (ln_gamma(0.5 * (ell + 1.0)) - ln_gamma(0.5 * ell)).exp();
        self.gamma / (2.0 * self.kappa).sqrt() * gamma_ratio
    }

    /// Cheap exponential proxy `E[√σ(t)] ≈ β₁ + β₂·e^{−β₃·t}` (GO eq. 2.32).
    ///
    /// Calibration anchors:
    /// * `β₁ = E[√σ(∞)]`
    /// * `β₂ = √σ₀ − β₁` (pins t = 0 exactly)
    /// * `β₃ = κ`        (natural mean-reversion scale)
    ///
    /// Accuracy is typically ≤1 % over `t ∈ [0, 30y]` for market-realistic
    /// CIR parameters. Callers needing higher accuracy should use
    /// [`Self::sqrt_mean`] directly.
    pub fn sqrt_mean_proxy(&self) -> SqrtMeanProxy {
        let beta1 = self.sqrt_mean_infinity();
        let beta2 = self.sigma_0.max(0.0).sqrt() - beta1;
        SqrtMeanProxy {
            beta1,
            beta2,
            beta3: self.kappa,
        }
    }

    /// Whether the Feller condition `2κσ̄ ≥ γ²` holds — i.e. the process
    /// stays strictly positive (no reflecting barrier at 0).
    pub fn feller_satisfied(&self) -> bool {
        2.0 * self.kappa * self.theta >= self.gamma * self.gamma
    }
}

/// Deterministic proxy for `E[√σ(t)]`, of the form `β₁ + β₂·exp(−β₃·t)`.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct SqrtMeanProxy {
    pub beta1: f64,
    pub beta2: f64,
    pub beta3: f64,
}

impl SqrtMeanProxy {
    pub fn eval(&self, t: f64) -> f64 {
        self.beta1 + self.beta2 * (-self.beta3 * t).exp()
    }
}

/// Euler–Maruyama simulator for the CIR process with full-truncation
/// of negative draws. Implements [`SimulationModel`] so paths can be
/// driven through [`crate::models::common::simulation::simulate_at_dates`].
///
/// # Papers
///
/// * **Cox, J. C., Ingersoll, J. E., Ross, S. A. (1985)** — *A Theory
///   of the Term Structure of Interest Rates*, Econometrica
///   53(2): 385–407. Introduces the square-root diffusion.
/// * **Andersen, L. (2008)** — *Simple and Efficient Simulation of
///   the Heston Model*, Journal of Computational Finance 11(3): 1–42.
///   Discusses discretisation bias of the square-root SDE; the
///   "full-truncation" scheme used here (clamp to `max(0, σ)` after
///   the Euler step before the diffusion's `√σ` re-evaluation) is its
///   simplest robust variant, taken over Deelstra–Delbaen's reflection
///   because it reproduces the Feller-violating parameter regimes used
///   by FX-HHW (see [`crate::models::forex::fx_hhw`]).
pub struct CirSimulator {
    pub process: CirProcess,
    rng: ChaCha20Rng,
}

impl CirSimulator {
    pub fn new(process: CirProcess, seed: u64) -> Self {
        Self {
            process,
            rng: ChaCha20Rng::seed_from_u64(seed),
        }
    }
}

impl SimulationModel for CirSimulator {
    type State = f64;

    fn initial_state(&self) -> Self::State {
        self.process.sigma_0
    }

    fn step(&mut self, state: &Self::State, _t: f64, dt: f64) -> Self::State {
        let z: f64 = self.rng.sample(StandardNormal);
        let sigma = state.max(0.0);
        (sigma
            + self.process.kappa * (self.process.theta - sigma) * dt
            + self.process.gamma * sigma.sqrt() * dt.sqrt() * z)
            .max(0.0)
    }
}

#[cfg(test)]
mod tests {
    use super::{CirProcess, CirSimulator};
    use crate::models::common::simulation::simulate_at_dates;
    use crate::time::daycounters::actual365fixed::Actual365Fixed;
    use chrono::NaiveDate;

    /// CIR parameters from Grzelak–Oosterlee §2.5 (eq. 2.40):
    /// `κ = 0.5, γ = 0.3, σ̄ = 0.1, σ₀ = 0.1`. Feller is violated (γ² > 2κσ̄).
    fn grzelak_params() -> CirProcess {
        CirProcess {
            kappa: 0.5,
            theta: 0.1,
            gamma: 0.3,
            sigma_0: 0.1,
        }
    }

    #[test]
    fn mean_boundary_conditions() {
        let p = grzelak_params();
        // At t = 0: E[σ(0)] = σ₀.
        assert!((p.mean(0.0) - p.sigma_0).abs() < 1e-15);
        // At t → ∞: E[σ(∞)] = σ̄.
        assert!((p.mean(1_000.0) - p.theta).abs() < 1e-10);
    }

    #[test]
    fn variance_boundary_conditions() {
        let p = grzelak_params();
        // Var at t=0 is zero (deterministic initial condition).
        assert!(p.variance(0.0).abs() < 1e-15);
        // Var at t→∞ is σ̄·γ²/(2κ).
        let expected = p.theta * p.gamma * p.gamma / (2.0 * p.kappa);
        assert!((p.variance(1_000.0) - expected).abs() < 1e-10);
    }

    #[test]
    fn sqrt_mean_at_zero_is_sqrt_sigma0() {
        let p = grzelak_params();
        assert!((p.sqrt_mean(0.0) - p.sigma_0.sqrt()).abs() < 1e-15);
    }

    /// `E[√σ(t)]²  ≤  E[σ(t)]` by Jensen — and the gap is `Var[√σ(t)]`.
    /// Checks monotone convergence of the series across several horizons.
    #[test]
    fn sqrt_mean_bounded_above_by_sqrt_mean_of_sigma() {
        let p = grzelak_params();
        for &t in &[0.25_f64, 1.0, 5.0, 10.0, 30.0] {
            let sm = p.sqrt_mean(t);
            let m = p.mean(t);
            assert!(
                sm * sm <= m + 1e-12,
                "t={}: E[√σ]² = {} > E[σ] = {}",
                t,
                sm * sm,
                m
            );
            assert!(sm > 0.0);
        }
    }

    /// As t → ∞, `E[√σ(t)]` converges to the gamma-distributed
    /// steady-state mean.
    #[test]
    fn sqrt_mean_converges_to_infinity_limit() {
        let p = grzelak_params();
        let sm_inf = p.sqrt_mean_infinity();
        // At t = 50y, essentially at the stationary limit.
        assert!((p.sqrt_mean(50.0) - sm_inf).abs() < 1e-8);
        // Sanity: for these parameters, σ(∞) ~ Gamma(ℓ/2, γ²/(4κ)·2) =
        // Gamma(ℓ/2, γ²/(2κ)). Mean = σ̄ = 0.1, so E[√·] < √0.1 ≈ 0.3162.
        assert!(sm_inf < p.theta.sqrt());
        assert!(sm_inf > 0.0);
    }

    /// Exponential proxy matches the exact series at `t = 0` and `t → ∞` by
    /// construction; in between, the 3-param fit is accurate to within
    /// ~5 % — good enough for the linearisation inside the forward ChF
    /// integrand, but callers that need tight precision should use
    /// [`CirProcess::sqrt_mean`] directly.
    #[test]
    fn proxy_matches_at_anchors_and_rough_interior() {
        let p = grzelak_params();
        let proxy = p.sqrt_mean_proxy();
        assert!((proxy.eval(0.0) - p.sigma_0.sqrt()).abs() < 1e-15);
        assert!((proxy.eval(100.0) - p.sqrt_mean_infinity()).abs() < 1e-12);
        for &t in &[0.25_f64, 1.0, 5.0, 10.0] {
            let exact = p.sqrt_mean(t);
            let approx = proxy.eval(t);
            let rel = (approx - exact).abs() / exact;
            assert!(
                rel < 0.05,
                "proxy error at t={}: {:.4}% (exact={}, proxy={})",
                t,
                rel * 100.0,
                exact,
                approx
            );
        }
    }

    /// The paper's footnote 2 claims its parameters violate Feller, but
    /// `2κσ̄ = 2·0.5·0.1 = 0.1` actually exceeds `γ² = 0.09`, so Feller is
    /// *satisfied* by a small margin — a minor bookkeeping error in the
    /// paper. Recorded here so the expectation matches the math.
    #[test]
    fn grzelak_params_satisfy_feller_by_small_margin() {
        let p = grzelak_params();
        assert!(p.feller_satisfied());
        let two_k_theta = 2.0 * p.kappa * p.theta;
        let g2 = p.gamma * p.gamma;
        assert!((two_k_theta - g2 - 0.01).abs() < 1e-15);
    }

    /// A healthy mean-reverting CIR does satisfy Feller.
    #[test]
    fn feller_true_when_2ks_ge_g2() {
        let p = CirProcess {
            kappa: 2.0,
            theta: 0.04,
            gamma: 0.3,
            sigma_0: 0.04,
        };
        // 2·2·0.04 = 0.16, γ² = 0.09 → satisfied.
        assert!(p.feller_satisfied());
    }

    /// Tight tolerance ⇒ more series terms ⇒ same result (within tol). Acts
    /// as a regression test against the termination condition.
    #[test]
    fn tight_tolerance_matches_default_tolerance() {
        let p = grzelak_params();
        for &t in &[0.5_f64, 2.0, 7.5] {
            let default = p.sqrt_mean(t);
            let tight = p.sqrt_mean_tol(t, 1.0e-16);
            assert!(
                (default - tight).abs() < 1.0e-12,
                "t={}: default {} tight {}",
                t,
                default,
                tight
            );
        }
    }

    /// `CirSimulator` under [`simulate_at_dates`]: sample-mean of σ(T)
    /// across 10k paths must match `CirProcess::mean(T)` to within a
    /// few sampling standard errors.
    #[test]
    fn cir_simulator_mean_matches_closed_form() {
        let p = CirProcess {
            kappa: 1.5,
            theta: 0.04,
            gamma: 0.25,
            sigma_0: 0.04,
        };
        let mut sim = CirSimulator::new(p, 2024);
        let val = NaiveDate::from_ymd_opt(2025, 1, 1).unwrap();
        let horizon = NaiveDate::from_ymd_opt(2026, 1, 1).unwrap();
        let dc = Actual365Fixed::default();
        let paths = simulate_at_dates(&mut sim, val, &[horizon], 10_000, 1, &dc);
        let terminals = paths.states_at(horizon).unwrap();
        let mean: f64 = terminals.iter().sum::<f64>() / terminals.len() as f64;
        let expected = p.mean(1.0);
        assert!(
            (mean - expected).abs() < 1.0e-3,
            "MC mean {} vs closed form {}",
            mean,
            expected
        );
    }

    /// Initial state matches `sigma_0`; variance decays to 0 as `t → 0`.
    #[test]
    fn cir_simulator_trivial_step_invariants() {
        use crate::models::common::simulation::SimulationModel;
        let p = CirProcess {
            kappa: 1.0,
            theta: 0.1,
            gamma: 0.1,
            sigma_0: 0.05,
        };
        let sim = CirSimulator::new(p, 1);
        assert_eq!(sim.initial_state(), 0.05);
    }
}