Stochastic shocks

This forum is closed. You can read the posts but cannot write. We have migrated the forum to a new location where you will have to reset your password.
Forum rules
This forum is closed. You can read the posts but cannot write. We have migrated the forum to a new location (https://forum.dynare.org) where you will have to reset your password.

Stochastic shocks

Postby ale » Fri Sep 02, 2011 1:58 pm

Hello everybody,

I am trying to see the reaction of an economy to multiple shocks, but I need those shocks to be simultaneous. Can this be done in Dynare with the command stoch_simul? Also, can I have shocks that last for more than one period? (I know how to do this with deterministic shocks, but I want to avoid using deterministic shocks).

Thank you,
Alexandra
ale
 
Posts: 7
Joined: Tue Mar 22, 2011 7:11 pm

Re: Stochastic shocks

Postby StephaneAdjemian » Fri Sep 02, 2011 3:04 pm

Dear Alexandra,

A shock will last more than one period if he goes through an autoregressive process. For instance If productivity is an AR(1) process then the time t innovation to productivity will affect the economy at periods t, t+1, t+2, t+3,.... I am not sure to understand your problem with stoch_simul. Do you want to compute IRFs with simultaneous shocks ?

Best,
Stéphane.
Stéphane Adjemian
Université du Maine, GAINS and DynareTeam
https://stepan.adjemian.eu
StephaneAdjemian
 
Posts: 429
Joined: Wed Jan 05, 2005 4:24 pm
Location: Paris, France.

Re: Stochastic shocks

Postby ale » Fri Sep 02, 2011 5:01 pm

Hi!

Thank you for your answer. Here are some details about what I'm trying to code in Dynare: I have a variable - b - that needs to follow an autoregressive process for only 3 periods, and afterwards it should be zero. For this I've introduced a dummy variable - d - (an exogenous variable) that takes the value 1 in the first 3 periods, and 0 afterwards, such that my equation looks like this in Dynare: b=d*rho*b(-1)+e_b, where e_b is the initial shock and rho the autoregressiv parameter. With deterministic shocks, I have the following code:

shocks;
var e_b; periods 1; values 0.01;
var d; periods 1:3; values 1;
end;
simul(periods=20);

Can I do the same thing using stochastic shocs (stoch_simul)? That is, obtain an unique set of IRFs in response of these two simultaneous shocks (e_b and d). Also, the variable d needs to be 1 at all times during 3 periods and not follow an autoregressive process.

Thank you,
Alexandra
ale
 
Posts: 7
Joined: Tue Mar 22, 2011 7:11 pm

Re: Stochastic shocks

Postby StephaneAdjemian » Mon Sep 05, 2011 9:55 am

Hi,

ale wrote:Hi!

Thank you for your answer. Here are some details about what I'm trying to code in Dynare: I have a variable - b - that needs to follow an autoregressive process for only 3 periods, and afterwards it should be zero. For this I've introduced a dummy variable - d - (an exogenous variable) that takes the value 1 in the first 3 periods, and 0 afterwards, such that my equation looks like this in Dynare: b=d*rho*b(-1)+e_b, where e_b is the initial shock and rho the autoregressiv parameter. With deterministic shocks, I have the following code:

shocks;
var e_b; periods 1; values 0.01;
var d; periods 1:3; values 1;
end;
simul(periods=20);

Can I do the same thing using stochastic shocs (stoch_simul)?



No. This trick only works with the deterministic solver.

ale wrote:That is, obtain an unique set of IRFs in response of these two simultaneous shocks (e_b and d). Also, the variable d needs to be 1 at all times during 3 periods and not follow an autoregressive process.

Thank you,
Alexandra


Why don't you consider MA shocks instead ? If you want shocks lasting for a finite number of periods this should be more appropriate.

Best,
Stéphane.
Stéphane Adjemian
Université du Maine, GAINS and DynareTeam
https://stepan.adjemian.eu
StephaneAdjemian
 
Posts: 429
Joined: Wed Jan 05, 2005 4:24 pm
Location: Paris, France.

Re: Stochastic shocks

Postby ale » Tue Sep 06, 2011 9:36 am

Hi Stephane,

Thank you for taking the time to answer! I'm not sure I understand correctly the use of MA shocks. Using MA shocks would solve only one of my problems (I would have a shock that lasts for more than one period), but I don't see how this can help me with simultaneous shocks. I would still be obliged to use deterministic shocks, no? as I still need the two simultaneous shocks - e_b and d. (my equation would be: b=(d+d(-1)+d(-2))*rho*b+e_b, with two initial shocks: a unitary shock on d and a shock on e_b of say 0.01).

Best regards,
Alexandra
ale
 
Posts: 7
Joined: Tue Mar 22, 2011 7:11 pm

Re: Stochastic shocks

Postby StephaneAdjemian » Tue Sep 06, 2011 9:47 am

Alexandra, If my understanding is correct you don't need simultaneaous shocks with an MA model. With such a model the effects of the time t innovation (e_b) last for a finite number of periods (set by the number of lags in the moving average model for b). Your equation would be, for instance, b = e_b + theta_1*e_b(-1) + theta_2 * e_b(-2).

Best, Stéphane.
Stéphane Adjemian
Université du Maine, GAINS and DynareTeam
https://stepan.adjemian.eu
StephaneAdjemian
 
Posts: 429
Joined: Wed Jan 05, 2005 4:24 pm
Location: Paris, France.

Re: Stochastic shocks

Postby ale » Tue Sep 06, 2011 12:09 pm

Yeah, but like this I lose the autoregressive part on my variable b (in my previous post it was supposed to read rho*b(-1) ). I am actually in a very specific configuration, for three periods b follows an autoregressive process (but in order to initialise it, I need a shock) and afterward it should be 0.

Thanks,
Alexandra
ale
 
Posts: 7
Joined: Tue Mar 22, 2011 7:11 pm

Re: Stochastic shocks

Postby StephaneAdjemian » Tue Sep 06, 2011 12:24 pm

I don't know you model... But I believe that you don't need such a non linear model for b. Suppose b = rho*b(-1)+eb. Then you can rewrite this AR(1) as an MA(oo):

\[
b_t = \sum_{i=0}^{\infty} \rho^i eb_{t-i}
\]

At time t the effect of innovation eb_t is 1,
At time t+1 the effect of innovation eb_t is given by rho,
At time t+2 the effect of innovation eb_t is given by rho^2, ...

If my understanding is correct you try to truncate this infinite sum with the second variable d. If this is what you are trying to do, the correct (and hopefully simpler) way is to use an MA model as mentionned in the previous post with theta_1 = rho and theta_2 = rho^2 (the effects of eb last for three periods in this case). Obviously here the limitation is that the number of lags is a parameter (not a variable)...

Best,
Stéphane.
Stéphane Adjemian
Université du Maine, GAINS and DynareTeam
https://stepan.adjemian.eu
StephaneAdjemian
 
Posts: 429
Joined: Wed Jan 05, 2005 4:24 pm
Location: Paris, France.

Re: Stochastic shocks

Postby ale » Tue Sep 06, 2011 12:59 pm

Ok...so you used Wold's decomposition. Now I get your point. Thank you for your explanations. I'll try this and see how it works.

Best regards,
Alexandra
ale
 
Posts: 7
Joined: Tue Mar 22, 2011 7:11 pm


Return to Dynare help

Who is online

Users browsing this forum: No registered users and 6 guests

cron