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

DynamicSR Indicator NT8

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

    DynamicSR Indicator NT8

    Thank you for converting DynamicSR indicator for NT8. https://ninjatraderecosystem.com/use...indicator-nt8/

    But I found one issue. It's not plotting right when I am plotting it on any oscillator (exp. MACD).

    NT7 is plotting right, but NT8 is NOT plotting right.

    Please see attached images.

    Anybody please able to fix it.

    Thank You
    Attached Files

    #2
    Hello BobyGill,

    Are you certain it is not plotting right?

    It looks like in the bottom panel of the NT8 chart there may be 3 plots that are all aligned right but two are set to not show markers.

    The histogram is squished because there are values of the blue and magenta plots plotting around 55 included with the autoscale of the histogram which is plotting at 0.2 and doesn't fluctuate more than 0 to 1.

    Typically, I wouldn't expect to see the MACD or Avg plots of the CL 12-19 plotting at 55. Are there multiple scripts added to this panel?

    May we see screenshots of the Visual and Plots parameters of all indicators applied to the chart?



    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Yes, I am sure that it's not plotting right on any histogram.

      There is only MACD indicator on the chart, nothing else.
      See attached NT7 and NT8.
      Attached Files

      Comment


        #4
        Why there is Space (GAP) in front of the name of "DynamicSR" when plotting on MACD or any other histogram.
        See attached
        Attached Files

        Comment


          #5
          Hello BobyGill,

          Either there is a space added to the Label field of that instance parameters or this is in the Name string in the script code.

          The chart has changed. There do not appear to be items plotting at 55.

          What is not plotting correctly?

          I am seeing in the screenshot that the DynamicSR indicator is set to plot 2.

          May we see screenshots of the Visual and Plots parameters of all indicators applied to the chart?

          What panel is the MACD indicator set to?

          What panel is the other instance of the DynamicSR set to?
          Last edited by NinjaTrader_ChelseaB; 11-18-2019, 09:44 AM.
          Chelsea B.NinjaTrader Customer Service

          Comment


            #6
            You can try on your own on MT8 and NT7 comparison.
            Plot DynamicSR indicator on MACD and see the difference.

            DynamicSR is not moving according to MACD on NT8, when we plot on MACD.. It's still moves according the Data Series.

            But on NT7 is moving according to MACD.
            Last edited by BobyGill; 11-18-2019, 09:49 AM.

            Comment


              #7
              Originally posted by BobyGill View Post
              You can try on your own on MT8 and NT7 comparison.
              Plot DynamicSR indicator on MACD and see the difference.

              DynamicSR is not moving according to MACD on NT8, when we plot on MACD.. It's still moves according the Data Series.

              But on NT7 is moving according to MACD.
              NT8 differentiates inputs, unlike NT7. In NT7, if you used another dataseries or indicator as an input, the indicator values were automatically all mapped as OHLC; in NT8, OHLC inputs refer exclusively to price.

              In NT8, you need to account for which type of input you are using. Check your code to ensure that you are not feeding your calculations with a PriceSeries, in which case, using another indicator/dataseries will be of no effect, as the calculations will still just use Price values.

              Comment


                #8
                Hello BobyGill,

                DynamicSR is not an indicator supplied with NinjaTrader and would need to be downloaded and imported.
                Is this something you obtained from the User App Share section of the NinjaTrader Ecosystem?
                Do you have links to both the NT7 and NT8 versions of the indicator you are using?

                To confirm, the issue is that the DynamicSR is not using the input series of the MACD?

                How are you confirming this is the case? What values are you expecting?

                Currently, the Scale justification is set to Overlay. This means it will not be using the same price scale as the MACD indicator.

                Perhaps you are wanting to set the Scale justification to Right?
                Chelsea B.NinjaTrader Customer Service

                Comment


                  #9
                  Hello ChelseaB

                  NT7 DynamicSR >> https://www.greattradingsystems.com/...raderindicator

                  NT8 DynamicSR >> https://ninjatraderecosystem.com/use...indicator-nt8/


                  Yes, Yes,

                  """Currently, the Scale justification is set to Overlay. This means it will not be using the same price scale as the MACD indicator.
                  Perhaps you are wanting to set the Scale justification to Right?"""


                  I want to scale the DynamicSR same price scale as the MACD by SCALE JUSTIFICATION to Right.

                  But see the screenshot attached when I select the SCALE JUSTIFICATION to Right.


                  Dynamic SR Still scale the Data Series Price not the MACD price scale, that's why it squeezed to current market price scale
                  Attached Files

                  Comment


                    #10
                    Hello BobyGill,

                    The DynamicSR Indicator NT8 indicator uses the High and Low series.

                    These do not revert to the Close series (as NinjaTrader 7 did).

                    An extra line with a condition to check for this and return the Input series can correct this:
                    if (Input is PriceSeries || Input is NinjaTrader.Data.Bars)
                    {
                    // the input series is not an indicator
                    }

                    For example:
                    HH = MAX((Input is PriceSeries || Input is NinjaTrader.Data.Bars) ? High : Input, 10);
                    LL = MIN((Input is PriceSeries || Input is NinjaTrader.Data.Bars) ? Low : Input, 10);

                    I will put in a request for Jim to update this script and include this code.
                    Chelsea B.NinjaTrader Customer Service

                    Comment


                      #11
                      Thank you, I will wait for update.

                      Comment


                        #12
                        Any update please??

                        Comment


                          #13
                          Hello BobyGill,

                          I have received your request and I will make changes as resources allow.

                          Providing platform technical support is our team's priority, and must be handled before working on conversions and custom scripts.

                          I will update this post after I have made changes.
                          JimNinjaTrader Customer Service

                          Comment


                            #14
                            Thanks for your patience.

                            This script has been updated: https://ninjatraderecosystem.com/use...indicator-nt8/

                            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.
                            JimNinjaTrader Customer Service

                            Comment


                              #15
                              Originally posted by NinjaTrader_Jim View Post
                              Thanks for your patience.

                              This script has been updated: https://ninjatraderecosystem.com/use...indicator-nt8/

                              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.
                              Thank You, It's working perfectly ...

                              Comment

                              Latest Posts

                              Collapse

                              Topics Statistics Last Post
                              Started by trilliantrader, Today, 03:01 PM
                              1 response
                              7 views
                              0 likes
                              Last Post NinjaTrader_Clayton  
                              Started by geddyisodin, Today, 05:20 AM
                              6 responses
                              34 views
                              0 likes
                              Last Post geddyisodin  
                              Started by pechtri, 06-22-2023, 02:31 AM
                              9 responses
                              122 views
                              0 likes
                              Last Post NinjaTrader_ChelseaB  
                              Started by frankthearm, 04-18-2024, 09:08 AM
                              16 responses
                              67 views
                              0 likes
                              Last Post NinjaTrader_Clayton  
                              Started by habeebft, Today, 01:18 PM
                              1 response
                              8 views
                              0 likes
                              Last Post NinjaTrader_ChelseaB  
                              Working...
                              X