Natasha,

Graham has provided a Intraday data Export AFL which is available in the 
Library.

Cheers

Prashanth
  ----- Original Message ----- 
  From: Natasha ~~!!! 
  To: [email protected] 
  Sent: Wednesday, June 24, 2009 00:05
  Subject: [amibroker] data conversion .




  output_folder = "C:\\Program Files\\Amibroker\\DataExport ~Txt\\" ;
   fmkdir( output_folder );
  fh = fopen( output_folder +Name()+".txt", "w"); 
  if( fh ) 
  { 
     fputs( 
"<TICKER>,<PER>,<DTYYYYMMDD>,<TIME>,<OPEN>,<HIGH>,<LOW>,<CLOSE>,<VOL>,<OPENINT>,\n",
 fh ); 
     y = Year(); 
     m = Month(); 
     d = Day(); 
     r = Hour();
     e = Minute();
     n = Second();
     
     for( i = 0; i < BarCount; i++ ) 
     { 
        fputs( Name() + "," , fh );
        fputs( " D , " , fh ); 


  ```````````````````
    Hi, 

    for end of day   ~~     fputs( " D , " , fh );   

   what is the symbol for one minute intraday data .. 

   Thanks .. 


   Natasha ..






  

Reply via email to