Aremos Eviews confusion
Posted: Thu Mar 08, 2012 9:07 am
I am trying to import two series from Macrobond and save them in an Aremos databank using the code below.
This works just fine. When I open the databank in Eviews the series are as they should. However, when I open it in Aremos the series which should start|end at 1/10/2010|2/29/2012 and 1/7/2008|2/29/2012 respectively instead start|end at 11/17/1978|5/27/1980 and 6/10/1977|5/27/1980. Some help to discern what is wrong would be greatly appreciated. (I have attached both the workfile and the databank.)
Code: Select all
Close @All
DbOpen(type=macrobond) xx as mb
WfCreate(wf=c:\temp\tmp.wf1) d7 1/1/2008 2/29/2012
Fetch(d=mb) jpbank0714 sebank0106
Close mb
Shell If Exist c:\temp\test.bnk Del c:\temp\test.bnk
DbCreate(type=aremos) c:\temp\test.bnk
For %1 jpbank0714 sebank0106
Copy tmp::Untitled\{%1} ::test::{%1}
Next
WfSave tmp
Close @All