CommencerCommencer gratuitement

Analyzing estimation output

The video has shown the analysis of goodness of fit in case of the Microsoft returns. Let's do a similar exercise for the daily EUR/USD returns. You need to analyze the estimation output for an AR(1)-GJR GARCH model with skewed student t distribution and then decide whether we need such a flexible model with AR(1) dynamics in the mean and leverage effect in the variance.

Cet exercice fait partie du cours

GARCH Models in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Specify model with AR(1) dynamics, GJR GARCH and skewed student t
flexgarchspec <- ugarchspec(mean.model = list(armaOrder = ___),
                            variance.model = list(model = ___),
                            distribution.model = ___)

# Estimate the model
flexgarchfit <- ___(data = EURUSDret, spec = flexgarchspec)
Modifier et exécuter le code