Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Bollinger Band % Help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Bollinger Band % Help

    Hi, im looking to see if anyone has already moved this Bollinger Band% indicator to NT8 or if they would like to help move it over from Tradingview to NT.


    //@version=4
    study(title = "Bollinger Bands %B", shorttitle = "BB %B", format=format.price, precision=2, resolution="")
    length = input(20, minval=1)
    src = input(close, title="Source")
    mult = input(2.0, minval=0.001, maxval=50, title="StdDev")
    basis = sma(src, length)
    dev = mult * stdev(src, length)
    upper = basis + dev
    lower = basis - dev
    bbr = (src - lower)/(upper - lower)
    plot(bbr, "Bollinger Bands %B", color=color.teal)
    band1 = hline(1, "Overbought", color=#606060, linestyle=hline.style_dashed)
    band0 = hline(0, "Oversold", color=#606060, linestyle=hline.style_dashed)
    fill(band1, band0, color=color.teal, title="Background")



    #2
    Hello adeelch,

    Thanks for your post and welcome to the NinjaTrader forums!

    I'm not sure if this is exactly the same but there is a Bollinger percent indicator that is one of two Bollinger indicators included with a download in our NT user apps section of the Ninjatrader ecosystem. These are free to download and use.


    This indicator is publicly available on our NinjaTrader Ecosystem website:
    Here is a basic guideline of how to import NinjaScript add-ons in NinjaTrader 8:

    Note — To import NinjaScripts you will need the original .zip file.

    To Import:
    1. Download the NinjaScripts to your desktop, keep them in the compressed .zip file.
    2. From the Control Center window select the menu Tools > Import > NinjaScript Add-on...
    3. Select the downloaded .zip file
    4. NinjaTrader will then confirm if the import has been successful.

    Critical - Specifically for some NinjaScripts, it will prompt that you are running newer versions of @SMA, @EMA, etc. and ask if you want to replace, press 'No'

    Once installed, you may add the indicator to a chart by:
    • Right-click your chart > Indicators... > Select the Indicator from the 'Available' list on the left > Add > OK
    Here is a short video demonstration of the import process:The NinjaTrader Ecosystem website is for educational and informational purposes only and should not be considered a solicitation to buy or sell a futures contract or make any other type of investment decision. The add-ons listed on this website are not to be considered a recommendation and it is the reader's responsibility to evaluate any product, service, or company. NinjaTrader Ecosystem LLC is not responsible for the accuracy or content of any product, service or company linked to on this website.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    574 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    332 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    553 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    551 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X