[amibroker] HOW TO CREATE CSV FILE WITHIN AFL OF EXPLORATION

2009-11-18 Thread bistrader
I would like to create a csv file of an afls' exploration. Does anyone have an example?

Re: [amibroker] HOW TO CREATE CSV FILE WITHIN AFL OF EXPLORATION

2009-11-18 Thread Howard B
Hi Bis -- The documentation explains how to write data to disk files from within AFL. You will need a sequence of: fopen -- one time to establish the file a loop that formats the data the way you want it, then calls fputs for each bar fclose -- one time to close the file and finalize the write.

Re: [amibroker] HOW TO CREATE CSV FILE WITHIN AFL OF EXPLORATION

2009-11-18 Thread Herman
You can create files from an exploration using the AddLineToFile() shown below. You need to define the PathFilename to point to where you want the file to end up. You format the msg to contain whatever you need to send to the file. Normally this would add a line to the file for each ticker

Re: [amibroker] HOW TO CREATE CSV FILE WITHIN AFL OF EXPLORATION

2009-11-18 Thread Mark Hike
Why not use OLE to export the result in the end of the afl? On Wed, Nov 18, 2009 at 11:17 AM, bistrader bistra...@yahoo.com wrote: I would like to create a csv file of an afls' exploration. Does anyone have an example?