Page 1 of 1

pagecopy

Posted: Thu Dec 13, 2012 1:19 pm
by puf
I wand to analyze several stock indices. they are together in one csv file which I can import to eviews. So all those data are in one page. I want to estimate garch model, but there are some missing observations due to trading day. Since trading day differe for different countries, I need to deal with this separately for each index. Therefore, I would like to create one page for each index, copy the relevant data for that index, and contract the page to get rid of the missing observations.

I would like to use the command:

Code: Select all

pagecopy(options) [object_list]
But I do not know how to use it. If I write:

Code: Select all

pagecopy(smpl=@all, page="1") [open close volume]
then Eviews tells me that these objects do not exist. However, those are series in my workfile.

The code:

Code: Select all

pagecopy(smpl=@all, page="1")
works fine, but copies all the series into the new page, what I do nto want. Could you help me please?

Re: pagecopy

Posted: Thu Dec 13, 2012 2:37 pm
by EViews Glenn
If OPEN, CLOSE, and VOLUME are series in the other page, and the last command (sort of) works then

Code: Select all

pagecopy(smpl=@all, page="1") open close volume
should work.