Hi everyone!
as Bollinger B% codes provided in library, is there anybody to help how can i modify parameters like b%(50 , 3)?
You can try with this code. You can modify yourself the period and the standard deviation multiplier the way you want:
REM Calculation of Bollinger oscillator
period = 50
dev = 3
dn = average[period]-std[period]*dev
delta = CLOSE - dn
width = dev * STD
BBO = delta * 100 / width
RETURN BBO AS"Bollinger Band Oscillator"
this code indicates something different than the PRT B%. also i need to have the 80-20 lines as the original one. Please advise.
is there anybody to help with PRT similar code code? what is the reason of difference?
Because I don’t think that this is the same indicator. Will update it next week, please up the topic if I don’t.
This was the indicator
PEDRAM.JOKAR was looking for:
https://www.prorealcode.com/prorealtime-trading-strategies/bollinger-trend-strategy/. (it’s been a long time, though, he did not use the search box, since it already existed).