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

Limiting a Plot

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

    Limiting a Plot

    Hi,

    Is there a way I can limit the plot of say an SMA to display for just the last 20 bars of the chart?

    If so, would someone please post some sample code that would allow this.

    Thankyou.

    #2
    This is not supported by default. There probably is a way to custom code it in NinjaScript, but unfortunately we don't have a sample a hand.

    Comment


      #3
      rt-trader you can add this code at the start of the OnBarUpdate() section of the indicator code as a simple workaround. Now this code does not completely do what you are trying to achieve because it does not automatically remove old plotted points. If you hit F5 and refresh the chart it will remove old points though.
      Code:
      BarsRequired = Bars.Count-20;
      Edit: To achieve the exact behavior you wanted please check out the reference sample I have added. The magic is done in the Plot Override section. Basically what is happening is I am creating a Path object that traces only the SMA value for the last 20 bars. Then I tell it to draw that path and voila you have an indicator that only draws for the last 20 bars.
      Attached Files
      Last edited by NinjaTrader_JoshP; 08-25-2007, 06:55 PM.
      Josh P.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by f.saeidi, Yesterday, 02:09 PM
      3 responses
      18 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by Jltarrau, Today, 05:57 AM
      1 response
      5 views
      0 likes
      Last Post NinjaTrader_LuisH  
      Started by kujista, Today, 06:23 AM
      0 responses
      1 view
      0 likes
      Last Post kujista
      by kujista
       
      Started by traderqz, Yesterday, 04:32 PM
      1 response
      12 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by f.saeidi, Today, 05:56 AM
      1 response
      5 views
      0 likes
      Last Post Jltarrau  
      Working...
      X