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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

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