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.
This exercise is part of the course
GARCH Models in R
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Take a default specification a with normal and skewed student t distribution
normgarchspec <- ___(distribution.model = ___)
sstdgarchspec <- ___(distribution.model = ___)