I need some advice regarding typing observable variables into the data
When looking at employment in the US from 1947 to 2004 there is an upward trend and I normalized that variable to one and entered it in Dynare like this.
n=n_obs*n_ss;
n is employment in the model and n_ss is steady state employment in the model which means that when n_obs is normalized to one, n=n_obs*n_ss holds. However, since n_obs has an upward trend I am instead considering to redefine a new observed variable like dn_obs=n_obs/n_obs(-1) and enter
dn_obs=gamma_n*n/n(-1)
gamma_n is the average upward trend you see in the data. On average gamma_n=1.0005 for quarterly data.
So any advice in this matter on what I should do?