Hi mates, I have a question about ARDL model in Stata
As I know The XTPMG command can calculate the ARDL (1 1). here is my command :
xtpmg d.lreerq d.lgdppcq d.nfagdpq d.ltotq d.lopenq d.lgovgdpq d.flo, lr(lreerq lgdppcq nfagdpq ltotq lopenq lgovgdp flo) ec(ECT) replace omg
After running this command I am not getting significant coefficients , so i want to run the ARDL(121111)
I generated a new variable which is the lagged (1) of the lgdppcq and named it lgdppcq_lag using the following command :
gen lgdppcq_lag = lgdppcq[_n-1]
Then I substituted the lgdppcq by lgdppcq_lag in the xtpmg command , as following :
xtpmg d.lreerq d.lgdppcq_lag d.nfagdpq d.ltotq d.lopenq d.lgovgdpq d.flo, lr(lreerq lgdppcq_lag nfagdpq ltotq lopenq lgovgdp flo) ec(ECT) replace omg
MY QUESTION is :
Am I running an ARDL(121111) model by this command ?
waiting your answer, and thank you very much in advance ...
Regards
As I know The XTPMG command can calculate the ARDL (1 1). here is my command :
xtpmg d.lreerq d.lgdppcq d.nfagdpq d.ltotq d.lopenq d.lgovgdpq d.flo, lr(lreerq lgdppcq nfagdpq ltotq lopenq lgovgdp flo) ec(ECT) replace omg
After running this command I am not getting significant coefficients , so i want to run the ARDL(121111)
I generated a new variable which is the lagged (1) of the lgdppcq and named it lgdppcq_lag using the following command :
gen lgdppcq_lag = lgdppcq[_n-1]
Then I substituted the lgdppcq by lgdppcq_lag in the xtpmg command , as following :
xtpmg d.lreerq d.lgdppcq_lag d.nfagdpq d.ltotq d.lopenq d.lgovgdpq d.flo, lr(lreerq lgdppcq_lag nfagdpq ltotq lopenq lgovgdp flo) ec(ECT) replace omg
MY QUESTION is :
Am I running an ARDL(121111) model by this command ?
waiting your answer, and thank you very much in advance ...
Regards
Comment