PureBytes Links
Trading Reference Links
|
There is no limit, at least not at such a low number. I import about
4000 symbols every evening using "import definition file".
If the format of your data file is like this:
<ticker>,<date-mdy>,<open>,<high>,<low>,<close>,<vol>,<open interest>
$COMPX, 3/30/05, 1980.07, 2005.67, 1980.07, 2005.67, 0, 0
$INDU, 3/30/05, 10405.7, 10544.1, 10405.48, 10540.93, 0, 0
$SPX, 3/30/05, 1165.35, 1181.55, 1165.35, 1181.4, 0, 0
then you can create your own format definition file with the
following code:
# Format definition for a file: HD-TmdyOHLCVoi
$FORMAT Ticker, Date_MDY, Open, High, Low, Close, Volume, OpenInt
$SEPARATOR ,
$SKIPLINES 1
$AUTOADD 1
$CONT 1
$OVERWRITE 1
$DEBUG 1
It's all explained in the Help file here:
http://www.amibroker.com/guide/d_ascii.html
Lesmond
--- In amibroker@xxxxxxxxxxxxxxx, Andre Huwyler <huwy@xxxx> wrote:
> Hi Group,
>
> I am trying to import 7000+ ASCII-files of historical
> stocks data into Amibroker. However, on each try it
> stops after stock #1268 has been imported.
>
> Does anyone know if there is a limit to number of
> files imported, and if yes, if there is an easy
> workaround to this??
>
> TIA,
> Andre
>
>
>
> __________________________________
> Yahoo! Messenger
> Show us what our next emoticon should look like. Join the fun.
> http://www.advision.webevents.yahoo.com/emoticontest
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|