Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Wait X number of bars

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

    Wait X number of bars

    From the moment a condition becomes true, is there a way to wait 15 bars before executing a trade?
    thanks

    #2
    Hello,

    You would need to create a custom variable to track the number of bars since the condition is true. You could use CurrentBar to more easily track this: http://www.ninjatrader.com/support/h...currentbar.htm

    Please let me know if I can be of further assistance.
    LanceNinjaTrader Customer Service

    Comment


      #3
      OK, so
      Code:
      if (condition 1 is true) {
      startcountingbar = CurrentBar;
      }
      How do I make startcountingbar + 15 condition 2?

      Thanks

      Comment


        #4
        Originally posted by kenb2004 View Post
        OK, so
        Code:
        if (condition 1 is true) {
        startcountingbar = CurrentBar;
        }
        How do I make startcountingbar + 15 condition 2?

        Thanks
        Code:
        if (startcountingbar + 15 == CurrentBar) MakeMegaBucks();

        Comment


          #5
          Koganam

          Thanks

          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