Page 1 of 1

Cross correlation - first difference

Posted: Wed Jul 24, 2013 7:58 am
by j52
Hello,

is there a way to efficiently test the cross correlation of d(y) and d(x) series without having first to create the differences using series dy=d(y)? Or is it even possible to program an automatic selection using the best lag structur according to aic or bic?

Re: Cross correlation - first difference

Posted: Wed Jul 24, 2013 8:21 am
by EViews Gareth
Make a group containing d(y) and d(x), rather than containing y and x.

Re: Cross correlation - first difference

Posted: Thu Jul 25, 2013 2:23 am
by j52
yes, but do I first have to define the new series dy and dx or can I open the group with y and x and somehow adjust them to d(y) and d(x)?
Rigth now, I have the series y and x. Define them as series dy=d(y) and series dx=d(x). Then open dy and dx as a group to run the cross correlation. Is there a way to do it faster?

Re: Cross correlation - first difference

Posted: Thu Jul 25, 2013 8:10 am
by EViews Gareth
Yes, make a group containing just d(y) and d(x).

Code: Select all

group mygroup d(y) d(x)

Re: Cross correlation - first difference

Posted: Fri Jul 26, 2013 1:27 am
by j52
Well, I guess there is then no way around creating the dy series. But thanks anyway.

Re: Cross correlation - first difference

Posted: Fri Jul 26, 2013 6:59 am
by EViews Gareth
Um, I just showed you how to do it without creating the series dy and dx.

Re: Cross correlation - first difference

Posted: Wed Jul 31, 2013 7:31 am
by j52
:) okay, my mistake. But Iguess the effort is the same if I create the groups or the dx series.