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

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 1304 views
  • 0 likes
  • 2 in conversation