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 Belfortbucks, Today, 09:29 PM
            0 responses
            6 views
            0 likes
            Last Post Belfortbucks  
            Started by zstheorist, Today, 07:52 PM
            0 responses
            7 views
            0 likes
            Last Post zstheorist  
            Started by pmachiraju, 11-01-2023, 04:46 AM
            8 responses
            151 views
            0 likes
            Last Post rehmans
            by rehmans
             
            Started by mattbsea, Today, 05:44 PM
            0 responses
            6 views
            0 likes
            Last Post mattbsea  
            Started by RideMe, 04-07-2024, 04:54 PM
            6 responses
            33 views
            0 likes
            Last Post RideMe
            by RideMe
             
            Working...
            X