Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Bollinger Band % RSI for Amibroker (AFL)
Bollinger Band based RSI
Percent BB RSI
This indicator is based on bollinger bands of the RSI indicator. The plot is the percentage distance the RSI indicator is between the top and bottom bollinger bands.
Screenshots
Indicator / Formula
MA_20 = MA (C,20); //This is the middle line periods = Param( "Periods", 14, 2, 200, 1 ); brsi =RSI(periods ); BBTop = BBandTop (brsi,20,2); //Upper Bollinger Band BBBottom = BBandBot (brsi,20,2); //Lower Bollinger Band PercentB = (brsi- BBBottom) / (BBTop - BBBottom); // Bollinger %B indicator Calculation Plot( PercentB ," PercentB RSI ",colorGreen,styleThick);
0 comments
Leave Comment
Please login here to leave a comment.
Back