GARCH Models in Python
Chelsea Yang
Data Science Instructor
News impact curve:
Debt-equity Ratio = Debt $/$ Equity
Stock price goes down, debt-equity ratio goes up
Riskier!
arch_model(my_data, p = 1, q = 1, o = 1,
mean = 'constant', vol = 'GARCH')
A popular option to model asymmetric shocks
Exponential GARCH
Add a conditional component to model the asymmetry in shocks similar to the GJR-GARCH
No non-negative constraints on alpha, beta so it runs faster
arch_model(my_data, p = 1, q = 1, o = 1,
mean = 'constant', vol = 'EGARCH')
GJR-GARCH or EGARCH?
Which model is better depends on the data
GARCH Models in Python