End of period convention and decision lag
Posted: Sat Feb 04, 2017 7:56 pm
I am trying to replicate the model Trigari (2009) "Equilibirum Unemployment, Job Flows, and Inflation Dynamics". The code is running and the impulse responses look quite similar, but now I am actually wondering whether I have made a mistake with respect to the timing convention of state variables.
Trigaris model features the following law of motion for employment:
The number of employed workers at the beginning of period n_t are those employed workers n_{t-1} who are not separated endogenously with prob rho_{t-1}, in addition to new matches formed m_{t-1}.
I have typed this equation and all the others where n features into dynare without changing the timing, and the code runs.
But in staying true with the end of period convention of dynare, shouldn't the law of motion for employment in the code look like this:
since the level of employment at the beginning of date t is actually decided at date t-1 right?
However, using this line in dynare, in addition to lagging n in all the other equations, results in the Blanchard Kahn conditions not being satisfied.
What am I not seeing here?
Another thing:
Trigari makes a limited information assumption following Rotemberg and Woodford (1997) that households make their choices about consumption,pricing,separation, vacancy posting at date t with the information available at time t-2.
This is done ino order to better compare the impulse responses to VAR estimates of a monetary policy shock, where a similar identifying restriction was made.
First does this change anything besides delaying all the impulse responses in response to the shock by 2 periods? To my eyes, apart from that delay my impulse responses look very similar.
If it does, can I implement it in dynare somehow?
Thanks for your help!
Trigaris model features the following law of motion for employment:
- Code: Select all
n_t =(1-rho_{t-1})n_{t-1}+m_{t-1}
The number of employed workers at the beginning of period n_t are those employed workers n_{t-1} who are not separated endogenously with prob rho_{t-1}, in addition to new matches formed m_{t-1}.
I have typed this equation and all the others where n features into dynare without changing the timing, and the code runs.
But in staying true with the end of period convention of dynare, shouldn't the law of motion for employment in the code look like this:
- Code: Select all
n_{t-1} =(1-rho_{t-1})n_{t-2}+m_{t-1}
since the level of employment at the beginning of date t is actually decided at date t-1 right?
However, using this line in dynare, in addition to lagging n in all the other equations, results in the Blanchard Kahn conditions not being satisfied.
What am I not seeing here?
Another thing:
Trigari makes a limited information assumption following Rotemberg and Woodford (1997) that households make their choices about consumption,pricing,separation, vacancy posting at date t with the information available at time t-2.
This is done ino order to better compare the impulse responses to VAR estimates of a monetary policy shock, where a similar identifying restriction was made.
First does this change anything besides delaying all the impulse responses in response to the shock by 2 periods? To my eyes, apart from that delay my impulse responses look very similar.
If it does, can I implement it in dynare somehow?
Thanks for your help!