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

The DCC-GARCH model proposed by Engle (2002) has two steps: first use GARCH model to estimate the conditional variance, then use the results from the first step to estimate conditional correlation. The following is the model.

 

DCC GARCH model.png

 

Now I wanna run simulation (e.g. B=100 times, sample with replacement) for each id-month combination in the attached sample data  (the simulation is applying the DCC-GARCH model to generate B simulated data series). Is there anyway to modify the following code to include simulation function? (I found there are a few codes for DCC-GARCH model simulation, however they are either in R, STATA or MATLAB, which I know little about).

 

*use DCC (1,1) - GARCH (1,1);

 

proc varmax data=have method=ml outest=a1_est outcov outstat=a2_stat;
 by id year month;
 model y1 y2;
 garch q=1 p=1 form=dcc;
run;

 

Thanks a lot for all your kindly help.

1 ACCEPTED SOLUTION

Accepted Solutions
ShelleySessoms
Community Manager

I've spoken with Tech Support and they suggest you open a track. They'd like to clarify exactly what you want or need to do.

 

You can open a track here: https://support.sas.com/ctx/supportform/createForm

 

Best of luck,

Shelley

View solution in original post

2 REPLIES 2
ShelleySessoms
Community Manager

I've spoken with Tech Support and they suggest you open a track. They'd like to clarify exactly what you want or need to do.

 

You can open a track here: https://support.sas.com/ctx/supportform/createForm

 

Best of luck,

Shelley

Jonate_H
Quartz | Level 8

Thank you so much Shelley for your kindly help! I will open a track as you suggested.

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

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
  • 2 replies
  • 3089 views
  • 3 likes
  • 2 in conversation