This question actually follows from another thread. However, I thought it would be useful to post it separately.
I have the following regression equation system:
Code: Select all
y_1t = a + b_1*x_t + c*z_1t
y_2t = a + b_2*x_t + c*z_2t
Code: Select all
y_1t = a*(1-r) + b_1*(x_t-r*x_{t-1}) + c*(z_1t-r*z_1{t-1}) + r*y_1{t-1}
Code: Select all
y_1t = a + b_1*x_t + c*z_1t + g*D*z_1t
y_2t = a + b_2*x_t + c*z_2t + g*D*z_2t
My question is: how can I correct the Dummy variable for possible autocorrelation? Is it even important? The problem is: it is a dummy indicating 1 if the observation is after a certain date and 0 if the observation is before a certain date. So, after some time, all observations will have D=1.
I thank you very much.
Kind regards
M
