Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Pivot indicator

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

    Pivot indicator

    I'm creating my own pivots indicator and use the following line to draw the daily pivot value in OnBarUpdate()

    DrawLine("PP",true,startline,pp,0,pp,Color.Red,DashStyle.Dash,1);

    where startline = first bar of the session

    pp = daily pivot value

    The line seems to be extending back further than the current session, how can I fix this so that the line starts from the current session only?

    #2
    You will need to print out what your startline parameter is and debug it to get it to the correct value to reach the first bar of the session.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      drawline error

      The error was the parameter startline stored the currentbar value at the starpoint (session break) but in terms of bars ago from current bar 0 this is currentbar - startline.

      DrawLine("PP",true,CurrentBar-startline,pp,0,pp,Color.Red,DashStyle.Dash,1);

      Comment


        #4
        Not sure what you mean. What error are you receiving?
        Josh P.NinjaTrader Customer Service

        Comment


          #5
          line error

          Sorry I mean the error is now fixed as I was using the wrong start point value for the line so the above code [currentbar-startline] is the fixed version.

          I have attached an image showing the indicator displaying daily pivot values for the current session. How do I alter the display so that all the price bars are shown but the pivots far from the price do not need to be displayed so the price action is not 'squashed' as shown in the image?
          Attached Files

          Comment


            #6
            Please try setting AutoScale (second DrawLine input) to false.

            Comment


              #7
              fix

              Yes that worked. Thank you.

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by Geovanny Suaza, 02-11-2026, 06:32 PM
              0 responses
              579 views
              0 likes
              Last Post Geovanny Suaza  
              Started by Geovanny Suaza, 02-11-2026, 05:51 PM
              0 responses
              334 views
              1 like
              Last Post Geovanny Suaza  
              Started by Mindset, 02-09-2026, 11:44 AM
              0 responses
              101 views
              0 likes
              Last Post Mindset
              by Mindset
               
              Started by Geovanny Suaza, 02-02-2026, 12:30 PM
              0 responses
              554 views
              1 like
              Last Post Geovanny Suaza  
              Started by RFrosty, 01-28-2026, 06:49 PM
              0 responses
              551 views
              1 like
              Last Post RFrosty
              by RFrosty
               
              Working...
              X