Dear all,
here I am again for your help.
I have estimated a VAR, actually a Structural VAR but I don't think this makes a difference in relation to my question.
I want to compute Cumulative Orthogonal Impulse Response Functions based on Parametric-Bootrastrap. This is done with this line in STATA:
irf create sVAR_US_A6, step(12) replace est(sVAR_US_A6) bsp bsaving( bsp_sVAR_US_A6, replace)
Then I generate the IRF table with this command:
irf table coirf, irf(sVAR_US_A6) impulse(mmXRq) response(D.Lgdp_nc3) std
the output is:
_
Results from sVAR_US_A6
step coirf Lower Upper S.E.
0 0 0 0 0
1 0.000053 -0.00067 0.000775 0.000369
2 -0.000018 -0.001206 0.00117 0.000606
3 -0.000132 -0.001727 0.001464 0.000814
...
step | coirf | Lower | Upper | S.E.
12 | -0.001106 | -0.004275 | 0.002064 | 0.001617
_
200 replications for the bootstrap. The SE is calculated as the standard deviation of all the bootstrap IRFs by Step
I do not get how the Confidence Intervals are generated given the IRF value and its SE. I have tried the cii command:
cii 200 -0.001106 0.001617
but this is what I get:
Variable | Obs Mean Std. Err. [95% Conf. Interval]
-------------+---------------------------------------------------------------
| 200 -.001106 .0001143 -.0013315 -.0008805
Does anyone can help?
Does it matter they are Cumulative IRFs?
Thanks a lot.