PureBytes Links
Trading Reference Links
|
Bob,
As I wrote, the use of Prec() needs special care, it may "kill" the
custom indicator.
If, for example, the range of some x is 0.012 to 0.024, then a Prec
(x,2) will give only two results, 0.01 and 0.02, which will give a
substantially different graph.
2 decimals accuracy is improper for x=1/RSI(), as you may see from
Plot(1/RSI(),"x",1,1);
Plot(Prec(1/RSI(),2),"xx",2,1);
Since the whole range of this custom x is less than 0.05, we need at
least a 4 decimals precision, ie
Plot(1/RSI(),"x",1,1);
Plot(Prec(1/RSI(),4),"xx",2,1);
or
Plot(1/RSI(),"x",1,1);
Plot(Prec(1/RSI(),5),"xx",2,1);
On the other side, for an sqrt(RSI()) the usual range is less than 10
and we could replace sqrt(RSI()) with Prec(sqrt(RSI()),3) without
significant change of the shape.
Plot(sqrt(RSI()),"x",1,1);
Plot(Prec(sqrt(RSI()),3),"xx",2,1);
In this example, an improper Prec(x,0) would kill the useful details
of the custom indicator, as you may see from
Plot(sqrt(RSI()),"x",1,1);
Plot(Prec(sqrt(RSI()),0),"xx",2,1);
In this last example, xx can not replace x.
I hope it is more clear now.
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "Bob Jagow" <bjagow@xxxx> wrote:
> But that's the problem, Dave--it already does!
> Plot(Price) defaults to 2, but other indicators don't--the extra
blank space
> is reserved for Charting| Show Value Labels
>
> DT gave the answer: Setting Prec of ALL indicators to 2 will
eliminate the
> blank space.
>
> Bob
> -----Original Message-----
> From: Dave Merrill [mailto:dmerrill@x...]
> Sent: Sunday, April 18, 2004 10:12 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: RE: [amibroker] AB's right margin
>
>
> Maybe the simplest and most flexible solution would be if AB just
used the
> formatting spec'd in the Plot statement, for the labels as well.
>
> Dave
> DM> Unfortunately, this only does exactly what it says, control
the
> DM> number of blank bars shown inside the chart itself. The
size of
> DM> the margin to the right of the chart body, where the labels
> DM> appear, seems to be fixed.
>
> DM> I've actually wished I could remove that area completely. It
> DM> takes up room, and the number formatting isn't "pretty".
>
> Not only is it not pretty, the formatting cannot be controlled
like
> formatting within a chart formula can. If I could format this,
I
> wouldn't want so much room out there in the first place.
>
>
> Ah well.
>
> Yuki
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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
>
>
>
> --------------------------------------------------------------------
--------
> --
> 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.
------------------------ 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/mOAaAA/3exGAA/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
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/
|