出来的残差序列非平稳,我试过一年一年的把数据删除,可是都非平稳,现在不知道该怎么办,我要写毕业论文好急,高手们帮帮我吧

数据是1992年到2011年4月 每个月份的数据,在附录里面[local]1[/local]
data example1;
input lnusdx lngold;
t=_n_;
cards;
;
proc arima;
identify var=lngold crosscorr=lnusdx;
estimate method=ml input=lnusdx noint plot;
run;
forecast lead=0 id=t out=out;
proc arima data=out;
identify var=residual stationarity=(adf=3);
run;