PureBytes Links
Trading Reference Links
|
I don't know about reading the Yaxis max/min but you can read the max
chart values. Something like below should get you started. Hopefully
no typos
SeeBar = status( "barvisible")
FirstBar = Valuewhen( Seebar and ref(SeeBar,-1)==0, barindex() );
LastBar = Valuewhen( Seebar and ref(SeeBar,1)==0, barindex() );
HighPrice = ref( HHV( H, FirstBar-Lastbar ), LastBar - Barcount + 1 );
LowPrice = ref( LLV( L, FirstBar-Lastbar ), LastBar - Barcount + 1 );
On Tue, 22 Feb 2005 11:21:04 -0800, J. Biran <jbiran@xxxxxxxxxxx> wrote:
>
>
> Hi,
>
>
>
> Using AFL can one read the value of minimum and maximum vertical scale being
> displayed?
>
>
>
>
>
>
> Joseph Biran
> ____________________________________________
>
> 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 the Yahoo! Terms of Service.
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/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/
|