# yield-curves
Yield curve interpolation and parametric fitting for fixed income, in pure
Rust with **zero dependencies**.
- **Linear** — piecewise linear, transparent baseline.
- **Cubic spline** — natural cubic spline (C² continuous) via Thomas algorithm.
- **Nelson-Siegel** (1987) — 4-parameter parametric fit.
- **Svensson** (1994) — 6-parameter parametric fit; official model used by
BCB (Brazil), ANBIMA, and the ECB's AAA-rated euro-area curve.
No dependency on `ndarray`, `argmin`, or any numerical crate. The Nelder-Mead
simplex optimizer used by the parametric fits is implemented internally.
## Quick start
```rust
use yield_curves::{CubicSplineCurve, NelsonSiegelCurve, YieldCurveInterpolator};
// Brazilian nominal yield curve from LTNs / NTN-Fs.
// x is time in years, y is the observed yield in percent.
let points = [
(1.0, 13.98),
(2.5, 13.51),
(4.0, 13.45),
(7.0, 13.57),
(10.0, 13.80),
];
let cubic = CubicSplineCurve::fit(&points).unwrap();
let rate_5y = cubic.rate_at(5.0);
let ns = NelsonSiegelCurve::fit(&points).unwrap();
let (beta0, beta1, beta2, tau) = ns.parameters();
```
## Conventions
The x-axis is **time in years**. Convert from calendar / business days at
the call site:
| Brazil (LTN/NTN-F/NTN-B) | `days / 252.0` (DU) |
| US Treasury (CMT) | `days / 365.25` |
| ISDA actual/365 | `days / 365.0` |
Extrapolation is **flat** outside the observed range — the rate of the
nearest observed anchor is returned. Parametric models in particular diverge
quickly outside the fitted range, so flat extrapolation is the safer default
for financial use.
## When to pick what
- **Linear** — transparent, monotonic, used as a baseline or when anchors are
already smoothed. Not C¹.
- **Cubic spline** — smoothest interpolation that still passes through every
anchor exactly. Good default when you trust your anchor points.
- **Nelson-Siegel** — parsimonious 4-parameter fit. Produces monotonic or
single-hump curves only. Use when you want a smooth parametric form for
research or when your anchors are noisy.
- **Svensson** — adds a second hump to NS. Standard for sovereign curves
(BCB/ANBIMA/ECB publish Svensson). Needs at least 6 anchor points and
benefits from regularly spaced maturities.
Both parametric methods perform a sanity check on the fitted parameters and
return [`YieldCurveError::FitFailed`] if the optimizer lands on an implausible
mode (typical symptom with few anchors or anchors that don't match the
parametric shape). In that case, fall back to the cubic spline.
## License
Licensed under either of [MIT](LICENSE-MIT) or [Apache License, Version 2.0](LICENSE-APACHE)
at your option.