Such a question. For getting the model stationarized, I define new variables as follows:
- Code: Select all
Y*(t) = Y(t)/Y(t-1)
It is clear, that if Y grows with a constant rate gy, then Y* remains constant. Do these definitions and original variables belong to the dynare code besides the model equations in new variables? If yes, how do I manage the right timing for such variables? In the initial values block I set Y* = 1.006, Y = 1.006. This choise would mean Y*(0) = Y(0) = 1.006, but what is with Y(-1)? How does dynare compute then the future values for Y? Should I denote the definition above as
- Code: Select all
y_(+1) = y(+1)/y
or as
- Code: Select all
y_ = y/y(-1)
?
thanks in advance!!!