BardParticipant
Master
Are there any plans to introduce Pro Buildler code for the Bollinger B Indicator? Thanks.
This is the code for %B Bollinger :
REM Calculation of Bollinger oscillator
delta = CLOSE - BOLLINGERDOWN
width = 4 * STD
BBO = delta * 100 / width
RETURN BBO AS "Bollinger Band Oscillator"
How to change period of %b in this code ?
I get it
BollingerOscillator = (((Close - BollingerDown[periode](close)) / (BollingerUp[periode](close) - BollingerDown[periode](close))) * 100)
Return BollingerOscillator
Sorry