Hello,
What version of SAS are you using?
Are you using SAS/ETS 14.2 (your help link is for 14.2)?
After SAS/ETS 14.2 a plot of the dynamic correlations was added to the VARMAX procedure (and also you can output the dynamic correlations to a data set via an ODS OUTPUT statement).
This was still experimental in SAS/ETS 15.2 (SAS 9.4 M7) , but I guess it's no longer experimental in SAS VIYA (or even SAS 9.4 M8).
In PROC VARMAX , put plots=(CONDCORR).
-
- CONDCORR
-
produces dynamic conditional covariance plots. This option is available only when the DCC GARCH model is specified.
The ODS output dataset is :
DCCCorrConstant |
Unconditional correlation matrix in the DCC GARCH model |
CORRCONSTANT=EXPECT with FORM=DCC |
If you are indeed on SAS/ETS 14.2, you can reach out to SAS Technical Support in your country.
They have a program to calculate (and plot) all this starting from the (time-varying) conditional covariance matrix :
outht=ohdcc;
Cheers,
Koen