PureBytes Links
Trading Reference Links
|
Hi,
I am using this AFL code to help me export data from AB into ASCII to be used by another software. But it creates only 1 text file for all the symbols (130 US stocks). How can I make AB create 1 file for every symbol or 130 text files in my OHLC folder? Any help is appreciated,
thanks
Qitrader
///////////////////Code/////////////////////////////
fmkdir( "C:\\OHLC" ); Buy = ( (DateNum() >= 1051225) AND (DateNum() <= 1070330) ); for( i = 0; i < BarCount; i++ )
if( Buy[i] ) { fh = fopen( "C:\\OHLC\\OHLC.txt", "a"); if( fh ) { y = Year(); m = Month(); d = Day(); r = Hour(); e = Minute();
for( i = 0; i < BarCount; i++ ) if( Buy[i] )
{ fputs( Name() + "," , fh ); ds = StrFormat("%02.0f%02.0f%02.0f,", y[ i ], m[ i ], d[ i ] );
fputs( ds, fh ); ts = StrFormat("%02.0f:%02.0f,", r[ i ],e[ i ]); fputs( ts, fh );
qs = StrFormat("%.2f,%.2f,%.2f,%.2f,%.0f\n",
O[ i ],H[ i ],L[ i ],C[ i ],V[ i ] ); fputs( qs, fh ); } fclose( fh ); } }
__._,_.___
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
SPONSORED LINKS
__,_._,___
|