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

It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.

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

It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.
Jonate_H
Quartz | Level 8

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

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!

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