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

Fixed Scale Indicators?

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

    Fixed Scale Indicators?

    I have an indicator (not panel 1) that displays only values between 0 and 100. The range 0 through 100 (not -100 to 100) must always be displayed regardless of the height of the panel. I can find no way in NinjaScript to implement this.

    Any ideas?

    Thanks

    RVR

    #2
    Unfortunately this is no supported at this time.

    Comment


      #3
      You can try adding two Black plots at values 100 and -100. Then set AutoScale to true.
      Josh P.NinjaTrader Customer Service

      Comment


        #4
        I'll Wait

        Thanks folks. I think I'll wait for NT7. This should be a really simple feature once the developers decide it's needed.

        Comment


          #5
          Add this, I got this from this forum too.

          public override void GetMinMaxValues(ChartControl chartControl, ref double min, ref double max)
          {
          min = -65; // As far south as it can go.
          max = +65; // Set a top limit too.
          }

          Comment


            #6
            Update for NT8

            For anyone wanting to do this in NT8:

            Code:
                    public override void OnCalculateMinMax()
                    {      
                       MinValue = 0.0;
                       MaxValue = 100.00;
                    }
            This is a very useful snippet

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by rhyminkevin, Today, 04:58 PM
            3 responses
            50 views
            0 likes
            Last Post Anfedport  
            Started by iceman2018, Today, 05:07 PM
            0 responses
            5 views
            0 likes
            Last Post iceman2018  
            Started by lightsun47, Today, 03:51 PM
            0 responses
            7 views
            0 likes
            Last Post lightsun47  
            Started by 00nevest, Today, 02:27 PM
            1 response
            14 views
            0 likes
            Last Post 00nevest  
            Started by futtrader, 04-21-2024, 01:50 AM
            4 responses
            50 views
            0 likes
            Last Post futtrader  
            Working...
            X