BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
amanjot_42
Fluorite | Level 6

Hello Everyone,

I am trying to come up with the predicted values of conditional variance by using the following code:

 

proc autoreg data = want;
by year;
model stock_returns = / garch = ( q=1,p=1 );
output out=var predicted=variance;
run;
quit;

 

My data contains daily observations of Stock X returns. I want to run this GARCH model on yearly basis. The problem is this code generates predicted values of stock returns and not the predicted values of conditional variance. Can you please help in this regard?

Regards,

Aman

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
sbxkoenk
SAS Super FREQ

Hello @amanjot_42 ,

 

The CEV= option in the OUTPUT statement stores the estimated conditional error variance at each time period in the variable VHAT in an output data set named OUT.

The below is just an example (not related to your data!).

 

proc autoreg data=c;
  model y = time / nlag=2 garch=(q=1,p=1) maxit=50;
  output out=out cev=vhat;
run;

Kind regards,

Koen

View solution in original post

3 REPLIES 3
Ksharp
Super User
Plz post it at Forecast Forum , proc autoreg is under SAS/ETS module .
sbxkoenk
SAS Super FREQ

Hello @amanjot_42 ,

 

The CEV= option in the OUTPUT statement stores the estimated conditional error variance at each time period in the variable VHAT in an output data set named OUT.

The below is just an example (not related to your data!).

 

proc autoreg data=c;
  model y = time / nlag=2 garch=(q=1,p=1) maxit=50;
  output out=out cev=vhat;
run;

Kind regards,

Koen

amanjot_42
Fluorite | Level 6
Thank you so much, Koen,
This works perfectly well!
Regards,
Aman

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

Discussion stats
  • 3 replies
  • 4344 views
  • 1 like
  • 3 in conversation