Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

bollinger band based on ema

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

    bollinger band based on ema

    I was wondering if anyone could base the bollinger bands off of a ema instead of the sma. I would try myself but I know nothing about programming

    Thanks

    #2
    All you have to do is open up the Bollinger code in Tools -> Edit NinjaScript -> Indicators and change any line that says SMA to EMA. Then right click -> Save As -> type in a new name and then press F5 to compile.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Thanks Josh I will give it a try.

      Comment


        #4
        It worked great, thank you so much.

        Sam

        Comment


          #5
          Bollinger band using High/Low

          Hi everyone, is there a way to get the bollinger bands using the High of bar price and not the CLOSE? TOS provides this as input.
          Regards

          Comment


            #6
            Hello Sideh101,


            To do this, use high for the IDataSeries input in your Bollinger Bands indicator method.
            Here is an example of this:



            Code:
            [COLOR=#000000][FONT=Tahoma]double upperValue  = Bollinger(High, 2, 20).Upper[0];
            [COLOR=#000000][FONT=Tahoma]double middleValue = Bollinger(High, 2, 20) [0];[/FONT][/COLOR]
            [COLOR=#000000][FONT=Tahoma]double lowerValue  = Bollinger(High, 2, 20).Lower[0];[/FONT][/COLOR]
            [/FONT][/COLOR]
            Here is the Bollinger Bands Help Guide to assist you further.
            Shawn B.NinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by samish18, 04-17-2024, 08:57 AM
            26 responses
            116 views
            0 likes
            Last Post samish18  
            Started by llanqui, Today, 11:13 AM
            3 responses
            3 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Started by ETFVoyageur, 04-30-2024, 02:04 PM
            6 responses
            41 views
            0 likes
            Last Post ETFVoyageur  
            Started by llanqui, 04-28-2024, 03:53 AM
            5 responses
            29 views
            0 likes
            Last Post NinjaTrader_BrandonH  
            Started by cmtjoancolmenero, 04-29-2024, 03:40 PM
            18 responses
            59 views
            0 likes
            Last Post cmtjoancolmenero  
            Working...
            X