Bollinger Bandwidth

Login or Register

Please login or register in order to view and post in the Forum.

6 posts / 0 new
Last post
Heidi Tait
Last seen: 3 years 11 months ago
Joined: 05/01/2020 - 18:30
Bollinger Bandwidth

In the bollinger band description it says that the custom indicator for bollinger band width will be discussed.

There is no discussion.

I would like to use this indicator, I do not see it as an option in custom indicators or indicators in the software package.

Thanks!

0
nicholaspaulcarr
Last seen: 3 years 9 months ago
Joined: 08/06/2013 - 00:00
In RTL, Bollinger Band Width

In RTL, Bollinger Band Width would be:

((BOLU-BOLD)/MA)*100

Heidi Tait
Last seen: 3 years 11 months ago
Joined: 05/01/2020 - 18:30
thank you!

thank you!

cpayne
Last seen: 1 year 7 months ago
Joined: 03/30/2009 - 00:00
BB Width

BOLU is used to access the upper Bollinger Band and BOLD the lower one (D for down).

So the width of the band would be...

BOLU - BOLD

The syntax Nicholas gave you...

((BOLU-BOLD)/MA)*100

Would give you the width of the band, as a percentage of the moving average price.

Heidi Tait
Last seen: 3 years 11 months ago
Joined: 05/01/2020 - 18:30
Thank you!

Thank you!

nicholaspaulcarr
Last seen: 3 years 9 months ago
Joined: 08/06/2013 - 00:00
On the code I posted, the MA

On the code I posted, the MA should be set to the same length as the Bollinger Bands (with the same MA type as well), since the MA represents the mid-line of the bands.