A speed-of-adjustment coefficient of about 7 is a clear sign that something is wrong as this would indicate a very explosive process. Unfortunately, it is not possible to identify the reason for this result based on the estimates alone. It might be that the ARDL model is just not suited to fit your data. Do you have any structural breaks in your time series? As a first step towards identifying the problem, you might want to visually compare the fitted values from the regression in levels (without the ec option) with the original data, e.g.:
Code:
ardl lfbcf_priv ltxx lfbcf_pub lide ldebt_ext ldef_fbcf_priv, lags(4 4 3 4 4 4) trendvar(timevar) predict fit, xb twoway (tsline lfbcf_priv) (tsline fit)
Code:
ardl lfbcf_priv ltxx lfbcf_pub lide ldebt_ext ldef_fbcf_priv, lags(4 4 3 4 4 4) trendvar(timevar) predict fit, xb twoway (tsline lfbcf_priv) (tsline fit)
I check also for the Heteroskedasticity of the ardl model and the test of Breusch-Pagan / Cook-Weisberg reports the presence of Heteroskedasticity
estat hettest
Breusch-Pagan / Cook-Weisberg test for heteroskedasticity
Ho: Constant variance
Variables: fitted values of lfbcf_priv
chi2(1) = 5.33
Prob > chi2 = 0.0209
That might be the source of the biaised coefficient?
A another question, how can I apply the test of chow in the ARDL model?
Leave a comment: