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 kinfxhk, 07-13-2026, 10:18 AM
      0 responses
      57 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 09:50 AM
      0 responses
      39 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-13-2026, 07:21 AM
      0 responses
      45 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 07-11-2026, 02:11 AM
      0 responses
      35 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      153 views
      0 likes
      Last Post SalmaTrader  
      Working...
      X