GARCH-Modelle in R
Kris Boudt
Professor of finance and econometrics
$$ \mu_{t} = \mu + \lambda \sigma^2_{t} $$
$\lambda > 0$ ist der Risiko/Rendite-Parameter und gibt die Zunahme der erwarteten Rendite pro Einheit Varianzrisiko an.
Ändere das Argument mean.model in ugarchspec() von list(armaOrder = c(0, 0)) zu list(armaOrder = c(0, 0), archm = TRUE, archpow = 2):
garchspec <- ugarchspec(
mean.model = list(armaOrder = c(0, 0)),
variance.model = list(model = "gjrGARCH"),
distribution.model = "sstd")
garchspec <- ugarchspec(
mean.model = list(armaOrder = c(0, 0), archm = TRUE, archpow = 2),
variance.model = list(model = "gjrGARCH"),
distribution.model = "sstd")
Schätzung
garchfit <- ugarchfit(data = sp500ret, spec = garchspec)
Untersuchung der geschätzten Koeffizienten für den Mittelwert
round(coef(garchfit)[1:2], 4)
mu archm
0.0002 1.9950
Prognostizierte durchschnittliche Renditen
$$ \hat{\mu}_{t} = 0.0002 + 1.9950 \hat{\sigma}^2_{t} $$
plot(fitted(garchfit))

$$ \mu_{t} = \mu + \rho(R_{t-1} - \mu) $$
$$ \mu_{t} = \mu + \rho(R_{t-1} - \mu) $$
$$ \mu_{t} = \mu + \rho(R_{t-1} - \mu) $$
Spezifikation und Schätzung von AR(1)-GJR-GARCH mit sstd-Verteilung
garchspec <- ugarchspec(
mean.model = list(armaOrder = c(1, 0)),
variance.model = list(model = "gjrGARCH"),
distribution.model = "sstd")
garchfit <- ugarchfit(data = sp500ret, spec = garchspec)
Schätzer des AR(1)-Modells
round(coef(garchfit)[1:2], 4)
mu ar1
0.0003 -0.0292
Das gleitende Durchschnittsmodell 1. Ordnung nutzt die Abweichung der Rendite von ihrem bedingten Mittelwert:
$$ \mu_{t} = \mu + \theta(R_{t-1} - \mu_{t-1}) $$
ARMA(1,1) kombiniert AR(1) und MA(1):
$$ \mu_{t} = \mu + \rho(R_{t-1} - \mu) + \theta(R_{t-1} - \mu_{t-1}) $$
MA(1)
garchspec <- ugarchspec(
mean.model = list(armaOrder = c(0, 1)),
variance.model = list(model = "gjrGARCH"),
distribution.model = "sstd")
ARMA(1, 1)
garchspec <- ugarchspec(
mean.model = list(armaOrder = c(1, 1)),
variance.model = list(model = "gjrGARCH"),
distribution.model = "sstd")
GARCH-Modelle in R