PureBytes Links
Trading Reference Links
|
Thanks for the numtostr tip Corey!
However SetbarsRequired makes no difference for me (and it shouldn't in this
case) and QuickAFL also makes no difference either On or Off.
Again, no matter what i do the barindexes DO NOT change when i click on the
chart at different locations so they do not behave the same as the
BarIndex() and Barcount for me. Using setbarsrequired gives me different
values but still no response to clicks (the barIndex() responds).
Did you click on the chart and see the numbers change as they do for the
barIndex()?
Frustrating; for sure it will turn out to be something really stupid :-(
thanks for testing!
herman
-----Original Message-----
From: Corey Saxe [mailto:res1wgwl@xxxxxxxxxxx]
Sent: Friday, September 03, 2004 8:29 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] Status("firstvisiblebarindex") vs
Status("firstvisiblebar")
Appears that QuickAFL rears its ugly head again.
Put setbarsrequired at the top.
BTW, you don't need any numtostr.
Title ="\nfirstvisiblebarindex= "+firstvisiblebarindex+
"\nfirstvisiblebar= "+firstvisiblebar+
"\nLastvisiblebar= "+lastvisiblebar+
"\nLastvisiblebarindex= "+Lastvisiblebarindex+
"\nBarindex= "+BarIndex()+
"\nBarcount= "+BarCount;
works fine.
-CS
----- Original Message -----
From: Herman van den Bergen
To: amibroker@xxxxxxxxxxxxxxx
Sent: Friday, September 03, 2004 4:16 PM
Subject: RE: [amibroker] Status("firstvisiblebarindex") vs
Status("firstvisiblebar")
[TJ] The difference is the same as between BarIndex() and BarCount.
Barindex() and barcount work as expected, but these new functions do
not.
Please try the code below.
[stepane] click on the chart and the results will be diferent...
That is what i expected, but nothing changes... did you try? PLEASE try
the
code below, the barcount and BarIndex() work as expected but the others
do
not. No matter what/where I click the first four numbers do not change,
they
do change with chart scrolling.
firstvisiblebar = Status("firstvisiblebar");
firstvisiblebarindex = Status("firstvisiblebarindex");
lastvisiblebar = Status("lastvisiblebar");
Lastvisiblebarindex = Status("Lastvisiblebarindex");
Title =
"\nfirstvisiblebarindex= "+NumToStr(firstvisiblebarindex,1.0,False)+
"\nfirstvisiblebar= "+NumToStr(firstvisiblebar,1.0,False)+
"\nLastvisiblebar= "+NumToStr(lastvisiblebar,1.0,False)+
"\nLastvisiblebarindex= "+NumToStr(Lastvisiblebarindex,1.0,False)+
"\nBarindex= "+NumToStr(BarIndex(),1.0,False)+
"\nBarcount= "+NumToStr(BarCount,1.0,False);
What do i do wrong?
herman
[Non-text portions of this message have been removed]
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
ADVERTISEMENT
----------------------------------------------------------------------------
--
Yahoo! Groups Links
a.. To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
b.. To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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/
|