ProRealTime – Bollinger Band – Built In Indicator
Forums › ProRealTime English forum › ProBuilder support › ProRealTime – Bollinger Band – Built In Indicator
- This topic has 5 replies, 3 voices, and was last updated 6 years ago by Pi.
Tagged: Bollinger
-
-
09/06/2017 at 3:27 PM #45644
Hi there
Does anyone have the code for the standard/built in Bollinger Band indicator within Prorealtime? For some reason, it provides a significantly different reading/level to anything else I compare (compared to 3 other platforms/brokers) it to on identical settings.
Any help would be appreciated.
Thanks
Andrew
09/06/2017 at 4:14 PM #4564709/06/2017 at 4:19 PM #4564804/22/2018 at 9:44 AM #6892404/22/2018 at 7:14 PM #6893704/23/2018 at 1:42 PM #68993Hi Nicolas,
I don’t have the PRT code, but I just compared the PRT BB and your BB in one chart and saw a different outcome.
Then I changed your BB SimpMovAv into a expMovAv, and the outcome was the same as the PRT BB. So then I knew.
I now made a combination indicator with BB and Keltner (both with the same SimpMovAv) so that I can easily change the periods, the BB deviation and the Keltner ATR-percentage with one action without opening the probuilder. (therefor you have to create indicator parameters named “per” (period) “dev” (BB deviation) and “ATR” (ATR-percentage)
Pieter
12345678910111213141516// you have to create indicator parameters named "per" (period) "dev" (BB deviation) and "ATR" (ATR-percentage)period = perdev = devdata = customcloseMA = average[period](data)BolUp = MA+STD[period]*devBolDn = MA-STD[period]*devMiddleMovingAverage=Average[per](close)UpperKchannel=MiddleMovingAverage+ATR*AverageTrueRange[per](high)LowerKchannel=MiddleMovingAverage-ATR*AverageTrueRange[per](low)RETURN bolup as "BOLsim++", ma as "BOLkeltMA", BolDn as "BOLsim--", UpperKchannel AS "KeltSim hi",LowerKchannel AS "KeltSim Lo" -
AuthorPosts