PureBytes Links
Trading Reference Links
|
Been trying to have my afl procedure wait until the backfill is complete. However, only
the AA has a backfill wait, and I'm not using the aa.
I have the following procedure but it doesn't work. I was hoping that the barcount
would contain the size of the data (not only the number of points in the chart). Any
suggestions?
Did tried setbarsrequired, but it always returned that size (10000).
tosec returns the number of seconds from Now(4).
do
{
//SetBarsRequired(10000,10);
temp = BarCount;
timesecs = tosec(Now(4));
do
{
for( b = 1; b < 50000; b++ )
{
a=exp(3.1415171837212349387);
}
}
while (tosec(Now(4))<= timesecs +5); //AB doesn't have a wait function
temp1= BarCount;
}
while (temp!=temp1);
------------------------------------
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/
|