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

Delta Package Indicator + GOM Volume Ladder Order Flow Footprint

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

    #16
    Hello,

    I was not able to export it since there is some log issue but I zipped all necessary files, see attachment. If you need some more files, please let me know.

    Thank you for your help and feedback.

    Miroslav
    Attached Files

    Comment


      #17
      miroslav,

      We would need AuZeroLagTEMA as well.

      Comment


        #18
        Hello,

        please, see attached file.

        Miroslav
        Attached Files

        Comment


          #19
          Hello miroslav,

          Thank you for your response.

          I was able to get the SlopeMAPokusDiff indicator to plot by using the following at the beginning of the OnBarUpdate() method:
          Code:
           		protected override void OnBarUpdate()
          		{
          			if (CurrentBar <= Period_slow) return;

          Comment


            #20
            Hello Patrick,

            fantastic!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! It works.

            I have one more indicator with similar issue. I was checking if there is no issue in variables and everything looks ok and it compiles correctly but again it is not plotting any values on the chart. See attached files.

            Thank you for your feedback and your help.

            Miroslav
            Attached Files

            Comment


              #21
              When averaging the SlopeCCI the value becomes NaN, this causes the plots and indicator SlopeMACCI to fail.
              I would try directly calling the indicator in the SlopeCCI and SlopeMACCI for plots, avoiding assigning the indicators as types.

              Comment


                #22
                Hello Patrick, thank you for your feedback. NaN means "number at number" or?. Is this issue something new in NT8? I do not remmebmer such issue in NT7.

                Thank you for your feedback

                Miroslav

                Comment


                  #23
                  Correct, NaN is Not an Number.

                  Comment


                    #24
                    Originally posted by NinjaTrader_PatrickH View Post
                    Correct, NaN is Not an Number.
                    Hello Patrick, thank you for an update. Is thete some solution how to make it? Honestly, how average of number can not be number. I was trying to do some other way but result is the same.
                    Thank you

                    Miroslav

                    Comment


                      #25
                      Hello miroslav,

                      Thank you for your response.

                      I am looking into this further on my end.

                      Comment


                        #26
                        Hello miroslav,

                        In the SlopeCCI indicator, use IsValidDataPointAt() on the CCISlope in the following manner before accessing it:
                        Code:
                        			CCISlope[0] = Slope(CCI(Close,Period),Period, 0);
                        			if (!CCISlope.IsValidDataPointAt(CurrentBar-1)) return;
                        For information on IsValidDataPointAt please visit the following link: http://ninjatrader.com/support/helpG...atapointat.htm

                        Comment

                        Latest Posts

                        Collapse

                        Topics Statistics Last Post
                        Started by Johnny Santiago, 10-11-2019, 09:21 AM
                        95 responses
                        6,193 views
                        0 likes
                        Last Post xiinteractive  
                        Started by xiinteractive, 04-09-2024, 08:08 AM
                        2 responses
                        11 views
                        0 likes
                        Last Post xiinteractive  
                        Started by Irukandji, Today, 09:34 AM
                        1 response
                        3 views
                        0 likes
                        Last Post NinjaTrader_Clayton  
                        Started by RubenCazorla, Today, 09:07 AM
                        1 response
                        5 views
                        0 likes
                        Last Post RubenCazorla  
                        Started by TraderBCL, Today, 04:38 AM
                        3 responses
                        25 views
                        0 likes
                        Last Post NinjaTrader_Jesse  
                        Working...
                        X