Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Limit signals generated from Strategy builder to last n bars

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

    Limit signals generated from Strategy builder to last n bars

    Hi,

    I am using strategy builder to generate signals in my trading.

    - Is it possible to write a condition ins strategy builder that will only display the signals for the last "n" bars?

    - Is it possible to write a condition in strategy builder to only display signals for current day? Or between a specific time on current day?

    Appreciate the help.

    #2
    Hi aprilfool,

    You can use the following code to only display markers for the current day:

    Code:
    if (Bars.IsFirstBarOfSession) {
        // Removes all draw objects
        RemoveDrawObjects();
    }
    Regards,
    William
    ninZa
    NinjaTrader Ecosystem Vendor - ninZa.co

    Comment


      #3
      Hello aprilfool,

      That depends on how you are marking signals. If you are using drawing objects you can use the Remove All Drawing Objects at the start of the session to clear previous drawing objects, that lets you draw from the start of the session. You could also make time conditions in your strategy so it only draws during specific times.

      To remove the objects you would create an action of Drawing -> Remove All Drawing Objects. To check if the bar is the first bar of the session you can make a condition like the following:
      Left: Misc-> first bar of session
      Center: equals
      Right: Misc -> True

      There is a guide on how to make time conditions here: https://ninjatrader.com/support/help...ateTimeFilters

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      111 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      59 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      38 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      42 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      78 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X