[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] Exporting data to ASCII format question



PureBytes Links

Trading Reference Links

I don’t totally understand your logic because it looks like you’re looping through each bar of the same symbol BarCount times, but to create a separate file for each symbol you could make the symbol name a part of your file name:

 

  fh = fopen( "C:\\OHLC\\OHLC” + Name() + “.txt", "a");

Regards,

 

David:

 

 


From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of Tony Lei
Sent: 03/31/2007 3:32 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Exporting data to ASCII format question

 

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
Investment management software Investment property software Investment software
Investment tracking software Return on investment software

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___