Hello,
I have raw daily returns data for about 10 countries. For each country, I wish to compute conditional volatility using the model GARCH(1,1).
Would this be the right code?
Proc autoreg data=daily_return outest=est;
model daily_return= / garch=(q=1, p=1); by country;
output out=conditional_var cev=vhat; run; quit;
data conditional_vol; gc; conditional_vol=sqrt(vhat); run;
Thank you-
Hello @kky6196
Your PROC AUTOREG code is fitting a GARCH(1,1) model for the daily_return variable for each country, and saves the conditional error variance from the GARCH(1,1) model into the output data set. The subsequent data step is transforming the conditional error variance to the standard deviation by taking the square root. If this is what you intended to do, then it looks good.
I hope this helps.
Hello @kky6196
Your PROC AUTOREG code is fitting a GARCH(1,1) model for the daily_return variable for each country, and saves the conditional error variance from the GARCH(1,1) model into the output data set. The subsequent data step is transforming the conditional error variance to the standard deviation by taking the square root. If this is what you intended to do, then it looks good.
I hope this helps.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.