LoslegenKostenlos loslegen

GARCH & Co

The end of the course is near. You have now the skills to analyze the time-varying volatility of financial returns using GARCH models. Volatility is however not the only feature that is time-varying. In this exercise, you'll analyze the standardized returns of the Microsoft and Walmart returns. You will discover that their correlations are dynamic.

The GARCH model for the daily Microsoft and IBM return has already been estimated for you and the ugarchfit output variables are available as msftgarchfit and wmtgarchfit.

Diese Übung ist Teil des Kurses

GARCH Models in R

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Compute standardized returns
stdmsftret <- ___(msftgarchfit, ___)
stdwmtret <- ___(wmtgarchfit, ___)

# Print the correlation
___(stdmsftret, stdwmtret)
Code bearbeiten und ausführen