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 alifarahani, Today, 09:40 AM
            6 responses
            32 views
            0 likes
            Last Post alifarahani  
            Started by Waxavi, Today, 02:10 AM
            1 response
            17 views
            0 likes
            Last Post NinjaTrader_LuisH  
            Started by Kaledus, Today, 01:29 PM
            5 responses
            14 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Started by Waxavi, Today, 02:00 AM
            1 response
            12 views
            0 likes
            Last Post NinjaTrader_LuisH  
            Started by gentlebenthebear, Today, 01:30 AM
            3 responses
            17 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Working...
            X