Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
                        0 responses
                        599 views
                        0 likes
                        Last Post Geovanny Suaza  
                        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
                        0 responses
                        344 views
                        1 like
                        Last Post Geovanny Suaza  
                        Started by Mindset, 02-09-2026, 11:44 AM
                        0 responses
                        103 views
                        0 likes
                        Last Post Mindset
                        by Mindset
                         
                        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
                        0 responses
                        558 views
                        1 like
                        Last Post Geovanny Suaza  
                        Started by RFrosty, 01-28-2026, 06:49 PM
                        0 responses
                        557 views
                        1 like
                        Last Post RFrosty
                        by RFrosty
                         
                        Working...
                        X