The ARDL(1,1,0,1,1,0) model is a special case of the ARDL(2,1,0,1,1,0) model. Evidence for a structural break in the latter is inconsistent with evidence against a structural break in the former.
Even with the ARDL(1,1,0,1,1,0) model, there is still no evidence for a long-run relationship. Thus, the best model still appears to be an ARDL model in first differences. Unfortunately, the ardl command does not support time series factors in its variable lists. You would need to generate first differences of your variables and then run the ardl command (without the ec option) on those first differences. Or, without searching for optimal lags again, simply use the regress command:
Notice that an ARDL(2,1,0,1,1,0) model in the variables y x1 x2 x3 x4 x5 becomes an ARDL(1,0,0,0) model in D.y D.x1 D.x3 D.x4 once the long-run terms are removed.
Even with the ARDL(1,1,0,1,1,0) model, there is still no evidence for a long-run relationship. Thus, the best model still appears to be an ARDL model in first differences. Unfortunately, the ardl command does not support time series factors in its variable lists. You would need to generate first differences of your variables and then run the ardl command (without the ec option) on those first differences. Or, without searching for optimal lags again, simply use the regress command:
Code:
regress D.y DL.y D.x1 D.x3 D.x4
Comment