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

Number of bars visible in chart window

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

    Number of bars visible in chart window

    HI NT-8 people ..

    I have been looking for the code / variable that holds the number of bars visible in the current chart window ... is this possible ? I have found lots of info on chartbars, but thats all the bars loaded in the chart .. I just need the number of bars visible in the chart window, which could change if I expand or shrink the window etc ..

    Any help greatly appreciated as always


    #2
    Hello 12tkram,

    Thanks for your post.

    This would be possible by subtracting ChartBars.FromIndex from ChartBars.ToIndex in OnRender().

    Code:
    protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
    {
        ClearOutputWindow();
        Print("Bars Visible: " + (ChartBars.ToIndex - ChartBars.FromIndex));
    }
    Please let me know if you have any questions.
    JimNinjaTrader Customer Service

    Comment


      #3
      oooo, thats was quick .. brilliant, will give it a go!!!!!!!!!

      Comment


        #4
        yep, that works perfectly .. thanks again, awesome support as per usual!

        Comment


          #5
          weirdly though, when I add the OnRender() function all my EMA plots disappear? is that expected?

          Comment


            #6
            OnRender() is like a plot override. To also see your plots put this line at the beginning of the OnRender() method:
            base.OnRender(chartControl, chartScale);
            eDanny
            NinjaTrader Ecosystem Vendor - Integrity Traders

            Comment


              #7
              Thanks eDanny

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by Rapine Heihei, Today, 07:51 PM
              0 responses
              3 views
              0 likes
              Last Post Rapine Heihei  
              Started by frslvr, 04-11-2024, 07:26 AM
              5 responses
              96 views
              1 like
              Last Post caryc123  
              Started by algospoke, 04-17-2024, 06:40 PM
              6 responses
              49 views
              0 likes
              Last Post algospoke  
              Started by arvidvanstaey, Today, 02:19 PM
              4 responses
              11 views
              0 likes
              Last Post arvidvanstaey  
              Started by samish18, 04-17-2024, 08:57 AM
              16 responses
              61 views
              0 likes
              Last Post samish18  
              Working...
              X