PureBytes Links
Trading Reference Links
|
Yes, thanks. This is what I was doing but it's sure not as convenient as hotkeying the style. Furthermore it doesn't speak to the scaling issue, and since the scaling is more of a biggie for me, I went back to the built-in price chart and use interpretation for displaying desired title info. Not what I really want, but...
--- In amibroker@xxxxxxxxxxxxxxx, "Anthony Faragasso" <ajf1111@xxxx> wrote:
> Try this...in indicator builder, click apply.
>
> Right click on the custom chart window and select Parameters....you can
> change between candle , bar , line chart.
>
> style=Param("style ",1,1,3,1);
>
> Chartstyle=IIf(style==1,styleCandle,IIf(style==2,styleBar,IIf(style==3,style
> Line,Null)));
>
> Plot( Close, "close", colorBlack, Chartstyle);
>
> Title = Name() + " " + Date() + "Open: " + Open +
>
> " Hi: " + High + " Lo: " + Low + " Close " + Close +
>
> " Change: " + ( Close - Ref( Close, -1 ) ) + " Vol: " + Volume;
>
>
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.507 / Virus Database: 304 - Release Date: 8/4/2003
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
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/
|