GJR-GARCH models with exogenous regressors in the variance equation.
A pure Python implementation of Glosten-Jagannathan-Runkle (1993) GARCH models that properly supports exogenous variables in the conditional variance equation—a feature missing from standard econometrics packages.
Standard GARCH packages (including Python's arch) don't natively support exogenous regressors in the variance equation. This matters for:
- Event studies: Testing whether specific events (regulatory announcements, infrastructure failures) affect volatility
- Sentiment analysis: Including sentiment indicators as volatility drivers
- Regime-dependent volatility: Adding dummy variables for different market conditions
This package implements the full GJR-GARCH-X specification:
σ²_t = ω + α·ε²_{t-1} + γ·ε²_{t-1}·I(ε_{t-1}<0) + β·σ²_{t-1} + Σδⱼ·x_{j,t}
Where x_{j,t} are your exogenous variables with coefficients δⱼ estimated via maximum likelihood.
pip install gjr-garch-ximport pandas as pd
from gjr_garch_x import estimate_gjr_garch_x
# Your returns data (log returns × 100)
returns = pd.Series(...)
# Exogenous variables for variance equation
exog_vars = pd.DataFrame({
'D_event': event_dummy, # Event indicator
'sentiment': sentiment_score, # Continuous variable
}, index=returns.index)
# Estimate model
results = estimate_gjr_garch_x(returns, exog_vars)
# Results
print(f"Converged: {results.converged}")
print(f"AIC: {results.aic:.2f}")
print(f"Event effect: {results.event_effects['D_event']:.4f}")
print(f"Leverage effect (γ): {results.leverage_effect:.4f}")
# Full summary
print(results.summary())- Student-t innovations: Captures fat tails in financial returns
- GJR-GARCH leverage effect: Asymmetric response to positive/negative shocks
- Robust standard errors: Numerical Hessian computation with proper inference
- Stationarity constraints: Enforced during optimization
- Pandas integration: Works directly with Series/DataFrame objects
- No dependencies on
arch: Standalone implementation - Type hints: Full type annotations for IDE support
σ²_t = ω + α·ε²_{t-1} + γ·ε²_{t-1}·I(ε_{t-1}<0) + β·σ²_{t-1} + Σδⱼ·x_{j,t}
Parameters:
ω(omega): Intercept, baseline variance levelα(alpha): ARCH effect, response to recent squared shocksγ(gamma): Leverage effect, additional response to negative shocksβ(beta): GARCH effect, persistence of conditional varianceδⱼ: Coefficients on exogenous variablesν(nu): Degrees of freedom for Student-t distribution
Leverage Effect Interpretation:
- Positive shocks: volatility impact =
α - Negative shocks: volatility impact =
α + γ - If
γ > 0: bad news increases volatility more than good news
α + β + |γ|/2 < 1
Enforced automatically during estimation.
Main estimation function.
Parameters:
returns:pd.Seriesof log returns (recommend × 100 for numerical stability)exog_vars:pd.DataFrameof exogenous variables, aligned with returns indexmethod: Optimization method ('SLSQP','L-BFGS-B','trust-constr')max_iter: Maximum number of optimizer iterations (default: 1000)verbose: Print estimation progress
Returns: GJRGARCHXResults object
Results container with attributes:
converged:bool— Did optimization converge?params:Dict[str, float]— All parameter estimatesstd_errors:Dict[str, float]— Standard errorspvalues:Dict[str, float]— Two-sided p-valueslog_likelihood:floataic,bic:float— Information criteriavolatility:pd.Series— Conditional standard deviation σ_tresiduals:pd.Series— Demeaned residuals ε_texog_effects:Dict[str, float]— All exogenous variable coefficientsevent_effects:Dict[str, float]— Event-type exogenous coefficientssentiment_effects:Dict[str, float]— Sentiment-type coefficientsleverage_effect:float— γ parameteriterations:int— Optimizer iterationsn_obs:int— Number of observations
import pandas as pd
from gjr_garch_x import estimate_gjr_garch_x
# Load BTC returns
btc = pd.read_csv('btc_returns.csv', index_col='date', parse_dates=True)
returns = btc['log_return'] * 100 # Convert to percentage
# Create event dummies
exog = pd.DataFrame(index=returns.index)
exog['D_infrastructure'] = 0
exog['D_regulatory'] = 0
# Mark infrastructure events (e.g., exchange hacks)
infra_dates = ['2022-11-11', '2022-05-09'] # FTX, Terra
for date in infra_dates:
# 7-day event window
mask = (exog.index >= pd.Timestamp(date) - pd.Timedelta(days=3)) & \
(exog.index <= pd.Timestamp(date) + pd.Timedelta(days=3))
exog.loc[mask, 'D_infrastructure'] = 1
# Mark regulatory events
reg_dates = ['2024-01-10', '2021-09-24'] # ETF approval, China ban
for date in reg_dates:
mask = (exog.index >= pd.Timestamp(date) - pd.Timedelta(days=3)) & \
(exog.index <= pd.Timestamp(date) + pd.Timedelta(days=3))
exog.loc[mask, 'D_regulatory'] = 1
# Estimate
results = estimate_gjr_garch_x(returns, exog, verbose=True)
# Compare effects
print(f"Infrastructure effect: {results.event_effects['D_infrastructure']:.4f}")
print(f"Regulatory effect: {results.event_effects['D_regulatory']:.4f}")
print(f"Ratio: {results.event_effects['D_infrastructure'] / results.event_effects['D_regulatory']:.2f}x")For users migrating from TARCH naming conventions, aliases are provided:
from gjr_garch_x import estimate_tarch_x, TARCHXResults, TARCHXEstimatorThese are identical to the GJR-prefixed versions.
If you use this package in academic work, please cite:
@software{farzulla2025gjrgarchx,
author = {Farzulla, Murad},
title = {gjr-garch-x: GJR-GARCH Models with Exogenous Variance Regressors},
year = {2025},
publisher = {Zenodo},
doi = {10.5281/zenodo.17988193},
url = {https://github.com/studiofarzulla/gjr-garch-x}
}For the research paper that motivated this implementation:
@techreport{farzulla2025infrastructure,
author = {Farzulla, Murad},
title = {Market Reaction Asymmetry: Infrastructure Disruption Dominance
Over Regulatory Uncertainty in Cryptocurrency Markets},
year = {2025},
type = {Working Paper},
doi = {10.2139/ssrn.5788082}
}- Glosten, L. R., Jagannathan, R., & Runkle, D. E. (1993). On the relation between the expected value and the volatility of the nominal excess return on stocks. Journal of Finance, 48(5), 1779-1801.
- Engle, R. F., & Ng, V. K. (1993). Measuring and testing the impact of news on volatility. Journal of Finance, 48(5), 1749-1778.
- Bollerslev, T., & Wooldridge, J. M. (1992). Quasi-maximum likelihood estimation and inference in dynamic models with time-varying covariances. Econometric Reviews, 11(2), 143-172.
MIT License. See LICENSE for details.
Contributions welcome. Please open an issue first to discuss proposed changes.
Murad Farzulla MSc Finance Analytics, King's College London ORCID: 0009-0002-7164-8704