PureBytes Links
Trading Reference Links
|
--- In amibroker@xxxxxxxxxxxxxxx, "Howard B" <howardbandy@xxx> wrote:
>
> Hi Bill --
>
> I see data from 1/1/2007, but not back to 2000. Each day is in a
separate
> file. The ones in the MetaStock column unzip into a .csv file with one
> minute data for several of the major currency pairs. Working with
365 csv
> data files to put one year together would be cumbersome.
It is not something to do by hand. You can write a simple script to
unzip the files and combine them into one big file, then import that
into AB.
If you put all the 2007 files in one directory and run this command on
Linux (probably will work on a Mac too) it will do it for you:
for f in `ls *.zip`;do zcat $f |grep -v "^<" >>2007.csv;done
It's harder on Windows because the zcat and grep commands do not
exist. I'd probably write a Python script if I had to do it on Windows.
> Am I missing the earlier data, and are there more continuous data
files for
> individual pairs?
As has been pointed out, there are links at the bottom of the page for
previous years. No continuous files.
Bill
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|