If you have a process with a unit root like
- Code: Select all
x=x(-1)+epsilon;
where epsilon is a stochastic shock process, any shock epsilon will be permanent. However, the most common way to implement this into Dynare is to stationarize the model by detrending it, i.e. differencing the system. In this case, you will end up with
- Code: Select all
dx=epsilon;
This is similar to the dA in the attached mod-file. However, you might try to directly use a non-stationary shock process like the first one.