You can use the ardl option regstore() to store the underlying estimates from regress, e.g.
Code:
ardl del_ln_tb_t del_ln_RGDP_US_t del_ln_RGDP_BD_t del_ln_rer_t, regstore(reg_estimates) estimates restore reg_estimates estimates replay reg_estimates
For CUSUM and CUSUM2 results you might want to have a look at the user-written cusum6 command:
Code:
ssc describe cusum6
The error message that results with your second model could potentially be avoided by using ardl with the maxcombs(#) option, where # should be a number larger than 500, or by restricting the maximum number of lags with the maxlags() option.
The error-correction representation can be obtained with the ec option, potentially combined with the option minlag1 to obtain the ECM in period t-1.
Please consult the help file of ardl regarding all of these options.
Leave a comment: