Fit a GARCH with skewed t-distribution
The default normal distribution assumption of the standardized residuals used in GARCH models are not representative of the real financial world. Fat tails and skewness are frequently observed in financial return data.
In this exercise, you will improve the GARCH model by using a skewed Student's t-distribution assumption. In addition, you will compare the model estimated volatility with that from a model with a normal distribution assumption by plotting them together.
A GARCH model with the default normal distribution assumption has been fitted for you, and its volatility estimation is saved in normal_vol
.
Este exercício faz parte do curso
GARCH Models in Python
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Specify GARCH model assumptions
skewt_gm = arch_model(sp_data['Return'], p = 1, q = 1, mean = 'constant', vol = 'GARCH', ____ = '____')
# Fit the model
skewt_result = skewt_gm.____()