PureBytes Links
Trading Reference Links
|
Bundy:
I think there might be an error in your formula. Don't you mean to put
parentheses around the entire numerator, like:
b = (BBandTop(C,9,1.6)-BBandBot(C,9,1.6))/MA(C,9);
In your version, you would only be dividing the BBandbot term by your moving
average.
Al Venosa
----- Original Message -----
From: "Bundy" <bundy@xxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, June 17, 2004 5:41 PM
Subject: Re: [amibroker] BOLLINGER BANDS HISTOGRAM
> Personally, I prefer to use something like this - much more informative
>
> b=BBandTop(C,9,1.6)-BBandBot(C,9,1.6)/MA(C,9);
> Plot(b,"Band Width",4,5);
> GraphXSpace=5;
>
> This is my setup for intraday trading - a longer view might use the more
> conventional Bollinger setup of 20 day MA and 2 standard deviations for
the
> bandwidth
>
>
> b=BBandTop(C,20,2)-BBandBot(C,20,2)/MA(C,20);
> Plot(b,"Band Width",4,5);
> GraphXSpace=5;
>
>
>
> >Is it possible to make an histogram that measures the width of
> >Bollinger Bands? (showing narrowing and widening of the BB)
> >It should have two colors (for the direction of change).
> >
> >I saw it in a book and it could be a great indicator for
> >confirmation of an entry.
> >
> >Some AFL specialist could help?
> >Thanks
> >Daniel
>
>
>
>
>
> 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
>
>
>
>
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
------------------------ Yahoo! Groups Sponsor --------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/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/
|