PureBytes Links
Trading Reference Links
|
Bad choice of wording in the post below. Should have been -
... AB processes all data in the "Apply to" target for all
corresponding tick data existing in the reference ticker regardless of
the AA range specified.
--- In amibroker@xxxxxxxxxxxxxxx, "bruce1r" <brucer@xxxx> wrote:
>
> Dale -
>
> I'll take this one since I was here again and checking in anyway.
> BTW, thanks Tomasz.
>
> Terry - I believe that AB processes all data in the reference ticker
> range for corresponding tick data in the "Apply to" target. This has
> significant implications on the processing time.
>
> Here's a short program to prove it to yourself -
>
> // Run this on N last days == 1, or on any From/To period - IT MAKES
> NO DIFFERENCE
>
> _TRACE("#DBGVIEWCLEAR");
> _TRACE("TICK LOOP");
> for ( i = 0; i < BarCount - 1; i++ )
> {
> if ( i % 252 == 0 )
> {
> d = DateTime();
> _TRACE( NumToStr( d[i], formatDateTime ) );
> }
> // Do some wasted processing on the tick to show elapsed time
> for ( j = 0; j < 1000; j++ )
> temp = 0;
> }
> _TRACE("ARRAY PROCESS");
> // Do some wasted processing on the array to show elapsed time
> for ( k = 1; k < 100000; k ++ )
> temp = EMA( Close, 20 );
>
> Filter = Status( "lastbarinrange" );
> AddColumn( C, "Last Close", 8.3 );
> _TRACE("STOP");
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|