[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Bollinger Band Width



PureBytes Links

Trading Reference Links

Brooke,

Sorry, but your formula for the width is wrong. You have to subtract the lower
band from the higher band, so the net (after elimination) width is

4 * (std(c,20))

didn't post this to the metastock list, so you might want to. Maybe you've been
working too hard on your TAOTL presentations :)).

Ted

Brookemail@xxxxxxx wrote:

> In a message dated 98-07-14 22:06:34 EDT, you write:
>
> << I'm horrible at programming language for formulas.  Can anyone
>  help me with a simple formula to track the daily width of a 20
>  period Bollinger Band
>  (a simple line defining the "spread" between the top and bottom
>  band would be great).  >>
>
> Upper Band:
>
> Mov( C ,20 ,S ) + 2 * ( Std( C ,20 ) )
>
> Lower Band:
>
> Mov( C ,20 ,S ) - 2 * ( Std( C ,20 ) )
>
> Width:
>
> (Mov( C ,20 ,S ) + 2 * ( Std( C ,20 ) ))-(Mov( C ,20 ,S ) - 2 * ( Std( C ,20 )
> ))
>
> Brooke