Dynamic Nelson Siegel model for yield curve estimation and forecasting
Project description
# Dynamic Nelson Siegel Model
This project implements various estimation methods for the Dynamic Nelson Siegel (DNS) model. In this example applied to the US yield curve data from 1972 to 2000. The goal is to provide a flexible package that allows users to estimate DNS parameters using different approaches.
## Features
- **Unified Interface**: Simple functions to fit DNS models and generate forecasts
- **Multiple Estimation Methods**: Cross-Sectional VAR and Extended Kalman Filter
- **Flexible Configuration**: Support for fixed or variable λ parameter
- **Direct Nelson-Siegel Function**: Standalone access to the yield curve formula
- **Comprehensive Documentation**: Examples and theoretical background
## Quick Start
### Installation
#### Option 1: Install from Source (Recommended for Development)
```bash
# Clone the repository
git clone https://github.com/svembden/dns-yield-curve.git
cd dns-yield-curve
# Install in development mode
pip install -e .
# Or install with optional dependencies
pip install -e ".[dev,examples]"
```
#### Option 2: Install as a Package
```bash
# Install from local directory
cd path/to/dns-yield-curve
pip install .
# Or install with extras
pip install ".[examples]"
```
#### Option 3: Install from PyPI (Future)
```bash
# Once published to PyPI
pip install dns-yield-curve
```
### Basic Usage
```python
from dnss import fit_dns_model, nelson_siegel_curve
import pandas as pd
import numpy as np
# Load your yield curve data
# data: DataFrame with yields (T x N)
# dates: DatetimeIndex with T dates
# maturities: array with N maturities
# Fit a DNS model using Cross-Sectional VAR
model = fit_dns_model(
dates=dates,
data=data,
maturities=maturities,
model_type="csvar", # or "kalman"
fix_lambda=True, # Fix λ parameter
lambda_value=0.6
)
# Generate forecasts
forecasts = model.predict(steps=12)
# Use Nelson-Siegel function directly
yields = nelson_siegel_curve(
maturities=[1, 5, 10],
L=4.0, S=-1.0, C=0.5, lam=0.6
)
```
### Available Functions
#### Main Interface Functions
- **`fit_dns_model()`**: Unified interface for fitting DNS models
- **`forecast_yield_curve()`**: Generate yield curve forecasts
- **`nelson_siegel_curve()`**: Direct access to Nelson-Siegel function
- **`generate_yield_curves_from_params()`**: Generate curves from parameter DataFrame
#### Model Classes (Advanced Usage)
- **`CSVAR`**: Cross-Sectional Vector Autoregression model
- **`KALMAN`**: Extended Kalman Filter model
### Example: Complete Workflow
```python
import pandas as pd
import numpy as np
from dnss import fit_dns_model, forecast_yield_curve
# 1. Prepare your data
maturities = np.array([0.25, 0.5, 1, 2, 3, 5, 7, 10, 20, 30])
dates = pd.date_range('2000-01-01', periods=100, freq='M')
# data = your_yield_data # Shape: (100, 10)
# 2. Fit model with Cross-Sectional VAR
model_csvar = fit_dns_model(
dates=dates,
data=data,
maturities=maturities,
model_type="csvar",
fix_lambda=True,
lambda_value=0.6,
maxlags=3
)
# 3. Fit model with Kalman Filter
model_kalman = fit_dns_model(
dates=dates,
data=data,
maturities=maturities,
model_type="kalman",
fix_lambda=False
)
# 4. Generate forecasts
csvar_forecasts = forecast_yield_curve(model_csvar, steps=12)
kalman_forecasts = forecast_yield_curve(model_kalman, steps=12)
# 5. Get detailed forecast information
yields, params, variance, intervals = forecast_yield_curve(
model_csvar, steps=6, return_param_estimates=True
)
```
### Running Examples
See the complete example in `examples/example_usage.py`:
```python
cd examples
python example_usage.py
```
## Distribution and Usage Options
### For Developers and Researchers
1. **Development Installation**: Install in editable mode for development
```bash
git clone https://github.com/yourusername/dns-yield-curve.git
cd dns-yield-curve
pip install -e ".[dev]"
```
2. **Jupyter Notebooks**: Use the provided notebooks for interactive analysis
```bash
pip install ".[examples]"
jupyter notebook notebooks/
```
### For End Users
1. **Package Installation**: Install as a regular package
```bash
pip install dns-yield-curve # Future PyPI release
```
2. **Import and Use**: Simple import and usage
```python
from dnss import fit_dns_model, nelson_siegel_curve
# Your analysis code here
model = fit_dns_model(dates, data, maturities, model_type="csvar")
forecasts = model.predict(steps=12)
```
### For Production Use
1. **Docker**: Create a Docker container (see below)
2. **Virtual Environment**: Use with specific versions
```bash
python -m venv dns_env
source dns_env/bin/activate # On Windows: dns_env\Scripts\activate
pip install dns-yield-curve
```
### Building and Distributing
If you want to build and distribute the package:
```bash
# Install build tools
pip install build twine
# Build the package
python -m build
# Upload to PyPI (requires account)
twine upload dist/*
# Or upload to Test PyPI first
twine upload --repository testpypi dist/*
```
## Estimation Methods
The following estimation methods are implemented:
1. **Cross-Sectional VAR (CSVAR)**: Estimates DNS parameters at each point in time, then models their dynamics using Vector Autoregression
2. **Extended Kalman Filter (KALMAN)**: Implements state-space estimation with nonlinear observation equations
Both methods support:
- Fixed or variable λ parameter
- Customizable lag structures (VAR)
- Confidence intervals for forecasts
- Comprehensive logging
## Usage
### Method 1: Cross-Sectional VAR
```python
from dnss import fit_dns_model
# Fit CSVAR model
model = fit_dns_model(
dates=dates,
data=data,
maturities=maturities,
model_type="csvar",
fix_lambda=True, # Keep λ fixed
lambda_value=0.6, # Value for fixed λ
maxlags=5, # Maximum lags for VAR
ic='aic' # Information criterion
)
# Generate forecasts
forecasts = model.predict(steps=12, conf_int=0.95)
```
### Method 2: Extended Kalman Filter
```python
from dnss import fit_dns_model
# Fit Kalman Filter model
model = fit_dns_model(
dates=dates,
data=data,
maturities=maturities,
model_type="kalman",
fix_lambda=False # Allow λ to vary over time
)
# Generate forecasts with detailed output
yields, params, covariance, intervals = model.predict(
steps=12,
return_param_estimates=True
)
```
### Method 3: Direct Nelson-Siegel Function
```python
from dnss import nelson_siegel_curve
# Calculate yields for given parameters
yields = nelson_siegel_curve(
maturities=[0.25, 1, 5, 10, 30],
L=4.0, # Level (long-term yield)
S=-1.5, # Slope (short-term component)
C=2.0, # Curvature (medium-term component)
lam=0.6 # Decay parameter
)
print("Yields:", yields)
# Output: [2.65, 3.12, 3.89, 4.01, 4.00]
```
## Theory
The Dynamic Nelson Siegel model is a popular approach for modeling the yield curve. It is based on the idea that the yield curve can be represented as a function of three factors: level (\beta_0(t) or L_t), slope (\beta_1(t) or S_t), and curvature (\beta_2(t) or C_t). The model is dynamic in the sense that these factors can evolve over time.
The model is defined as:
$$
y(t) = \beta_0(t) + \beta_1(t) \cdot \frac{1 - e^{-\lambda_t \tau}}{\lambda_t \tau} + \beta_2(t) \cdot \left( \frac{1 - e^{-\lambda_t \tau}}{\lambda_t \tau} - e^{-\lambda_t \tau} \right)
$$
where:
- \(y(t)\) is the yield at time \(t\),
- \(\beta_0(t)\) is the level factor,
- \(\beta_1(t)\) is the slope factor,
- \(\beta_2(t)\) is the curvature factor,
- \(\lambda_t\) is a decay factor,
- \(\tau\) is the time to maturity.
The model can be estimated using various methods. The first method is a cross-sectional estimation, where the parameters are estimated at each point and a VAR model is fitted to the time series of the parameters. The second method uses a Kalman filter to estimate the parameters dynamically.
### Cross-Sectional VAR
The cross-sectional VAR model is defined as:
$$
\begin{pmatrix}
\beta_0(t)
\beta_1(t)
\beta_2(t)
\lambda_t
\end{pmatrix}
=
\begin{pmatrix}
\phi_{00} & \phi_{01} & \phi_{02} & \phi_{03}
\phi_{10} & \phi_{11} & \phi_{12} & \phi_{13}
\phi_{20} & \phi_{21} & \phi_{22} & \phi_{23}
\phi_{30} & \phi_{31} & \phi_{32} & \phi_{33}
\end{pmatrix}
\begin{pmatrix}
\beta_0(t-1)
\beta_1(t-1)
\beta_2(t-1)
\lambda_{t-1}
\end{pmatrix}
+
\begin{pmatrix}
\epsilon_0(t)
\epsilon_1(t)
\epsilon_2(t)
\epsilon_3(t)
\end{pmatrix}
$$
where:
- \(\phi_{ij}\) are the coefficients of the VAR model,
- \(\epsilon_i(t)\) are the error terms.
Note: when \(\lambda_t\) is chosen to be fixed (\(\lambda_t = \lambda\)), the model simplifies.
### Kalman Filter
The Kalman filter is used to estimate the dynamic Nelson–Siegel (DNS) factors over time within a state–space framework.
The state vector is defined as:
$$
x_t =
\begin{pmatrix}
L_t
S_t
C_t
\lambda_t
\end{pmatrix},
$$
where \(L_t\) is the level, \(S_t\) the slope, \(C_t\) the curvature, and \(\lambda_t\) the decay parameter.
---
**State equation (transition):**
$$
x_t = \mu + \Phi (x_{t-1} - \mu) + \eta_t, \quad
\eta_t \sim \mathcal{N}(0,Q),
$$
with \(\mu\) the unconditional means, \(\Phi = \text{diag}(\phi_L,\phi_S,\phi_C,\phi_\lambda)\) the persistence matrix, and \(Q=qq^\top\) the process noise covariance.
---
**Observation equation (nonlinear measurement):**
The observed yields \(y_t \in \mathbb{R}^N\) at maturities \(\tau_1,\dots,\tau_N\) are given by:
$$
y_t = B(\lambda_t)
\begin{pmatrix}
L_t
S_t
C_t
\end{pmatrix}
+ \varepsilon_t,
\quad \varepsilon_t \sim \mathcal{N}(0,\Sigma),
$$
where
$$
B(\lambda_t) =
\begin{bmatrix}
1 & f_1(\tau_1,\lambda_t) & f_2(\tau_1,\lambda_t)
\vdots & \vdots & \vdots
1 & f_1(\tau_N,\lambda_t) & f_2(\tau_N,\lambda_t)
\end{bmatrix},
$$
with loading functions
$$
f_1(\tau,\lambda) = \frac{1 - e^{-\lambda \tau}}{\lambda \tau}, \quad
f_2(\tau,\lambda) = \frac{1 - e^{-\lambda \tau}}{\lambda \tau} - e^{-\lambda \tau}.
$$
---
**Extended Kalman Filter (EKF):**
Since the observation equation is nonlinear in \(\lambda_t\), the filter linearizes it via the Jacobian \(H_t\):
- Derivatives w.r.t. \(L,S,C\) correspond to the loadings \(1,f_1,f_2\).
- Derivative w.r.t. \(\lambda\) combines sensitivities of \(f_1,f_2\) weighted by \(S_t\) and \(C_t\).
The EKF recursion then applies:
- **Prediction:** \(x_{t|t-1}, P_{t|t-1}\)
- **Update:** \(x_{t|t}, P_{t|t}\) using innovation \(v_t = y_t - \hat{y}_{t|t-1}\).
---
**Estimation:**
Parameters \((\mu,\Phi,Q,\Sigma)\) are estimated by maximizing the Gaussian log-likelihood built from the EKF innovations. Initialization uses PCA (for starting factors), AR(1) fits (for persistence), and pragmatic scaling for noise terms.
---
**Variants:**
- **Variable \lambda_t\ (4-state):** All four factors evolve dynamically.
- **Fixed \lambda\ (3-state):** \lambda is constant; its dynamics and sensitivities are suppressed.
## Package Structure
``
dnss/
├── __init__.py # Main package exports
├── main.py # Unified interface functions
├── models/
│ ├── cross_sectional_var.py # CSVAR implementation
│ └── kalman_filter.py # Kalman Filter implementation
└── utils/
├── helpers.py # Utility functions
└── logging.py # Logging configuration
``
## Data
The data used in this project is the US Yield Curve from 1972 to 2000. It can be loaded using the provided data loading functionality.
## Notebooks
Two Jupyter notebooks are included for exploratory analysis and model comparison:
- `exploratory_analysis.ipynb`: Contains exploratory data analysis on the yield curve data.
- `model_comparison.ipynb`: Compares the different estimation methods implemented in the project directly.
## Contributing
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
```
## Theory
The Dynamic Nelson Siegel model is a popular approach for modeling the yield curve. It is based on the idea that the yield curve can be represented as a function of three factors: level (\beta_0(t) or L_t), slope (\beta_1(t) or S_t), and curvature (\beta_2(t) or C_t). The model is dynamic in the sense that these factors can evolve over time.
The model is defined as:
$$
y(t) = \beta_0(t) + \beta_1(t) \cdot \frac{1 - e^{-\lambda_t\tau}}{\lambda_t\tau} + \beta_2(t) \cdot \left( \frac{1 - e^{-\lambda_t\tau}}{\lambda_t\tau} - e^{-\lambda_t\tau} \right)
$$
where:
- \(y(t)\) is the yield at time \(t\),
- \(\beta_0(t)\) is the level factor,
- \(\beta_1(t)\) is the slope factor,
- \(\beta_2(t)\) is the curvature factor,
- \(\lambda_t\) is a decay factor,
- \(\tau\) is the time to maturity.
The model can be estimated using various methods. The first method is a cross-sectional estimation, where the parameters are estimated at each point and a VAR model is fitted to the time series of the parameters. The second method uses a Kalman filter to estimate the parameters dynamically.
### Cross-Sectional VAR
The cross-sectional VAR model is defined as:
$$
\begin{pmatrix}
\beta_0(t) \\
\beta_1(t) \\
\beta_2(t) \\
\lambda_t
\end{pmatrix}
=
\begin{pmatrix}
\phi_{00} & \phi_{01} & \phi_{02} & \phi_{03} \\
\phi_{10} & \phi_{11} & \phi_{12} & \phi_{13} \\
\phi_{20} & \phi_{21} & \phi_{22} & \phi_{23} \\
\phi_{30} & \phi_{31} & \phi_{32} & \phi_{33}
\end{pmatrix}
\begin{pmatrix}
\beta_0(t-1) \\
\beta_1(t-1) \\
\beta_2(t-1) \\
\lambda_{t-1}
\end{pmatrix}
+
\begin{pmatrix}
\epsilon_0(t) \\
\epsilon_1(t) \\
\epsilon_2(t) \\
\epsilon_3(t)
\end{pmatrix}
$$
where:
- $\phi_{ij}$ are the coefficients of the VAR model,
- $\epsilon_i(t)$ are the error terms.
Note: when $\lambda_t$ is chosen to be fixed ($\lambda_t = \lambda$), the model simplifies.
### Kalman Filter
The Kalman filter is used to estimate the dynamic Nelson–Siegel (DNS) factors over time within a state–space framework.
The state vector is defined as:
$$
x_t =
\begin{pmatrix}
L_t \\
S_t \\
C_t \\
\lambda_t
\end{pmatrix},
$$
where $L_t$ is the level, $S_t$ the slope, $C_t$ the curvature, and $\lambda_t$ the decay parameter.
---
**State equation (transition):**
$$
x_t = \mu + \Phi \,(x_{t-1} - \mu) + \eta_t, \quad
\eta_t \sim \mathcal{N}(0,Q),
$$
with $\mu$ the unconditional means, $\Phi = \text{diag}(\phi_L,\phi_S,\phi_C,\phi_\lambda)$ the persistence matrix, and $Q=qq^\top$ the process noise covariance.
---
**Observation equation (nonlinear measurement):**
The observed yields $y_t \in \mathbb{R}^N$ at maturities $\tau_1,\dots,\tau_N$ are given by:
$$
y_t = B(\lambda_t)
\begin{pmatrix}
L_t \\
S_t \\
C_t
\end{pmatrix}
+ \varepsilon_t,
\quad \varepsilon_t \sim \mathcal{N}(0,\Sigma),
$$
where
$$
B(\lambda_t) =
\begin{bmatrix}
1 & f_1(\tau_1,\lambda_t) & f_2(\tau_1,\lambda_t) \\
\vdots & \vdots & \vdots \\
1 & f_1(\tau_N,\lambda_t) & f_2(\tau_N,\lambda_t)
\end{bmatrix},
$$
with loading functions
$$
f_1(\tau,\lambda) = \frac{1 - e^{-\lambda \tau}}{\lambda \tau}, \quad
f_2(\tau,\lambda) = \frac{1 - e^{-\lambda \tau}}{\lambda \tau} - e^{-\lambda \tau}.
$$
---
**Extended Kalman Filter (EKF):**
Since the observation equation is nonlinear in $\lambda_t$, the filter linearizes it via the Jacobian $H_t$:
- Derivatives w.r.t. $L,S,C$ correspond to the loadings $1,f_1,f_2$.
- Derivative w.r.t. $\lambda$ combines sensitivities of $f_1,f_2$ weighted by $S_t$ and $C_t$.
The EKF recursion then applies:
- **Prediction:** $x_{t|t-1}, P_{t|t-1}$
- **Update:** $x_{t|t}, P_{t|t}$ using innovation $v_t = y_t - \hat{y}_{t|t-1}$.
---
**Estimation:**
Parameters $(\mu,\Phi,Q,\Sigma)$ are estimated by maximizing the Gaussian log-likelihood built from the EKF innovations. Initialization uses PCA (for starting factors), AR(1) fits (for persistence), and pragmatic scaling for noise terms.
---
**Variants:**
- **Variable $\lambda_t$ (4-state):** All four factors evolve dynamically.
- **Fixed $\lambda$ (3-state):** $\lambda$ is constant; its dynamics and sensitivities are suppressed.
## Notebooks
Two Jupyter notebooks are included for exploratory analysis and model comparison:
- `exploratory_analysis.ipynb`: Contains exploratory data analysis on the yield curve data.
- `model_comparison.ipynb`: Compares the different estimation methods implemented in the project directly.
## Contributing
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dns_yield_curve-0.1.0.tar.gz
(229.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dns_yield_curve-0.1.0.tar.gz.
File metadata
- Download URL: dns_yield_curve-0.1.0.tar.gz
- Upload date:
- Size: 229.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2817ff4d64048b1b6e4a85871abcaaa6fae3373de8b89706e53d2e649e897106
|
|
| MD5 |
efc3cd7a921f24e4639743d68ffa51d9
|
|
| BLAKE2b-256 |
3445f0b3a3dfe1ae69b1bea0066d271e4af93d76110801eb8bc9dc83d0a8e2c9
|
File details
Details for the file dns_yield_curve-0.1.0-py3-none-any.whl.
File metadata
- Download URL: dns_yield_curve-0.1.0-py3-none-any.whl
- Upload date:
- Size: 20.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8484f5908865b35dc546237c980cbfa0027c0bc6df69cc87d9d7e9abeee71864
|
|
| MD5 |
c4e8f87698ff7f726098a27c7a5a7d5e
|
|
| BLAKE2b-256 |
54e5db9391c21ba723cfee43af4ba37c9096abd5bbc034754ac7f505a30e6c22
|