BookmarkSubscribeRSS Feed
Hanyu
Fluorite | Level 6

I have a intraday data and I want to estimate a GARCH(1,1) model using the code SAS provide.

proc model data = normal ;

parms arch0 .1 arch1 .2 garch1 .75 ;

/* mean model */

y = intercept ;

/* variance model */

h.y = arch0 + arch1*xlag(resid.y**2,mse.y) +

garch1*xlag(h.y,mse.y) ;

/* fit the model */

fit y / method = marquardt fiml ;

run ;

quit ;

However, I want to re-initialize the lag of resid.y**2 as the previous day's mean square error. Any thought on this matter? Thank you in advance.

1 REPLY 1
SteveDenham
Jade | Level 19

You should also post this in the SAS Forecasting and Econometrics forum.  I think the folks there specialize in the PROCs from SAS/ETS.

Steve Denham

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1289 views
  • 0 likes
  • 2 in conversation