PureBytes Links
Trading Reference Links
|
Could someone check this.....using the Status("Barvisible") function...I
can not seem to get the lowest low value returned...although the Highest
High returns ok.
Thank you in advance
Anthony
barvisible=Status("barvisible");
Maxh=LastValue(Highest(IIf(barvisible,H,0)));
Minl=LastValue(Lowest(IIf(barvisible,L,0)));
Title="Lowest Low = "+WriteVal(Minl,1.2)+"... Highest High ="
+WriteVal(Maxh,1.2);
Plot(C,"",colorBlack,styleCandle);
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|