Thank you very much! I recently read a paper and I ran into some questions and would like to ask you. In this article, we simulate an incremental carbon tax policy shock, and the author’s persistence parameter of the exogenous shock of this policy parameter is set to an exaggerated 0.9999, instead of using the estimation method to derive the persistence parameter.What is the reason for this setting, and does it affect the robustness of the model results?The detailed code i.e. article is attached.The exogenous shock settings are as follows://Eq. 76 carbon tax process
TAU_X_SHOCK=0.99999*TAU_X_SHOCK(-1)+eps_TAU_X+eps_TAU_X(-1)
+eps_TAU_X(-2)+eps_TAU_X(-3)+eps_TAU_X(-4)+eps_TAU_X(-5)
+eps_TAU_X(-6)+eps_TAU_X(-7)+eps_TAU_X(-8)+eps_TAU_X(-9)
+eps_TAU_X(-10)+eps_TAU_X(-11)+eps_TAU_X(-12)
+eps_TAU_X(-13)+eps_TAU_X(-14)+eps_TAU_X(-15)
+eps_TAU_X(-16)+eps_TAU_X(-17)+eps_TAU_X(-18)
+eps_TAU_X(-19)+eps_TAU_X(-20)+eps_TAU_X(-21)
+eps_TAU_X(-22)+eps_TAU_X(-23)+eps_TAU_X(-24)+eps_TAU_X(-25)
+eps_TAU_X(-26)+eps_TAU_X(-27)+eps_TAU_X(-28)
+eps_TAU_X(-29)+eps_TAU_X(-30)+eps_TAU_X(-31)+eps_TAU_X(-32)
+eps_TAU_X(-33)+eps_TAU_X(-34)+eps_TAU_X(-35)
+eps_TAU_X(-36)+eps_TAU_X(-37)+eps_TAU_X(-38)+eps_TAU_X(-39);
Climate actions and macro-financial stability The role of central.pdf (1.1 MB)
代码.pdf (73.4 KB)
This basically looks like a short-cut to implementing a permanent shock (which would happen with a unit root) without going all the way and having to compute the new steady state.
Does this parameter setting affect the robustness of the model’s calculation results? Why does the general DSGE simulation use estimation for the persistence parameters and this model uses the set one?
You have the replication files, so that is what the authors did. I have no idea what they intended to do. Most likely only the authors can answer your questions.