Skip to content

rugarch - question w.r.t. (robust) SE and bias in estimates of a particular MA(1)-eGARCH(1, 1)-STD model

2 messages · Johannes Moser, Alexios Ghalanos

#
Hi Johannes,

It is most probably related to the bounds I have defaulted on the eGARCH
model for the gamma. Should probably by (0,1) NOT (-1,1).

Try:

################################
spec1 = ugarchspec(variance.model=list( model="eGARCH",
garchOrder=c(1,1)), mean.model=list( armaOrder = c(0,1) ),
distribution.model="std")

setbounds(spec1)<-list(gamma1=c(0,1))

fit1 = ugarchfit( spec=spec1, data=mydata , solver="solnp",
fit.control=list(scale=1 )

sim = ugarchsim(fit1, n.sim=1000)

fit2 = ugarchfit(spec1, fitted(sim))
cbind(coef(fit1),coef(fit2))
################################

I'll need to investigate why I had the bounds set as I did in the first
place.

Regards,

Alexios
On 10/07/2014 11:29, Johannes Moser wrote: