Displaying 1 result from an estimated 1 matches for "dax_1".
Did you mean:
eax_1
2009 Jul 15
1
Is it possible to use EGARCH and GJR in R?
Hi,
Could you please help me with EGARCH and GJR?
Is it possible to use EGARCH and GJR in R? I have used below mentioned
code
for GARCH in R, but I never used EGARCH and GJR in R.
Thank you in advance!
daten<-read.table("H://Daten//Zeitreihen//dax_1.csv", sep=";", header=T)
DAX.kurs<-daten
DAX.kurs<-ts(DAX.kurs,names="DAX-Kurs")
DAX.rendite<-diff(DAX.kurs)/DAX.kurs[1:length(DAX.kurs)-1]
g<-garchFit(data=DAX.rendite,formula=~garch(1,1),const.dist="dstd")
g.predict<-predict(g,n.ahe...