ComenzarEmpieza gratis

Sensitivity of coverage to distribution model

A GARCH model is a collection of assumptions regarding the mean, the variance and the distribution. A naive approach is to assume a normal distribution. This model is not a realistic model in case of analyzing stock returns, like the daily Microsoft returns. A skewed student t distribution is a better description of its distribution. You will see that this becomes clear by comparing the coverage of the 5% value-at-risk under the normal distribution and skewed student t distribution.

Este ejercicio forma parte del curso

GARCH Models in R

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Take a default specification a with normal and skewed student t distribution
normgarchspec <- ___(distribution.model = ___)
sstdgarchspec <- ___(distribution.model = ___)
Editar y ejecutar código