PureBytes Links
Trading Reference Links
|
Dear Members,
when i m trying to export RT data in 1 min compression from a Tick
database using the following AFL, it skipes some ticks from counting.
thanx in advance,
Soumya
_SECTION_BEGIN("Export RT Data");
fmkdir( "F:\\SaveData" );
//Buy = ( (DateNum() >= 1070608) AND (DateNum() <= 1080208) ) AND V>0;
//if we want to oexport data for a single Day, we modify the Second
line like this
Buy = ( (DateNum() == 1080208)) AND TimeNum() < 152959 AND V>0;
for( i = 0; i < BarCount; i++ )
if( Buy[i] )
{
//fh = fopen( "F:\\SaveData\\Cash_IEOD.csv", "a");//if we want to
export all data in a single file//
fh = fopen( "F:\\SaveData\\"+Name()+".csv", "a");// if we want to
export data in an individual file//
if( fh )
{
fputs
( "<ticker>,<date>,<time>,<open>,<high>,<low>,<close>,<volume> \n",
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%02,",
m[ i ], d[ i ], y[ 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
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|