I have some trouble extracting the covariances out of a forecast in R. This might be easy for you, but I am a beginner in R:
dcc.fcst = dccforecast(dcc.fit, n.roll=155, n.ahead=1)
print(rcov(dcc.fcst))
and the results I get are in the following format:
$`2015-04-23`
, , T+1
rpf rff
rpf 0.0001126362 0.0001125729
rff 0.0001125729 0.0001188316
$`2015-04-24`
, , T+1
rpf rff
rpf 0.0001058720 0.0001060763
rff 0.0001060763 0.0001129745
and so on (in total 155 such covariance matrices)...
I tried the formula: rcov(dcc.fcst)$ "%Y-%m-%d"[1,2,]
but it doesn't seem to work.