Page 1 of 1

Impulse response functions and shocks

PostPosted: Tue Aug 13, 2013 6:36 pm
by yc1122
Hi all,

Just wanna make sure are IRFs in dynare computed based on (positive) one standard deviation shock? i.e. say the monetary policy shock is actually a contraction shock (which brings down output, consumption etc.) in the IRF plots reported by dynare?

Thanks.

cheers,
yc

Re: Impulse response functions and shocks

PostPosted: Thu Aug 15, 2013 10:59 am
by jpfeifer
Dynare always takes a one standard deviation shock by default. If you shock enters with a plus sign, e.g.
Code: Select all
i=rho*pi+eps_m

this will be a positive shock (however, in a Taylor rule, this would have the interpretation of a contractionary, often called "negative", shock). If you want a negative shock, write
Code: Select all
i=rho*pi-eps_m

i.e. enter the shock with a minus sign.

Re: Impulse response functions and shocks

PostPosted: Thu Aug 15, 2013 12:18 pm
by yc1122
Got it. Thanks a lot.