Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to close position on time intervals?

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

    How to close position on time intervals?

    How would I close positions on the next 5 minute interval, So I a position opened at 4:45 it will close at 4:50, if opened at 4:54 it will close at 4:55. Is this possible on Ninjatrader 8? If so can someone please show me the code. Thanks for your time and help!

    #2
    Hello xNICK,

    Thanks for your post.

    Can you clarify what bars you are using? (IE: 1 minute bars, 5 minute bars, etc.)

    Comment


      #3
      Yes, I'm using 1 minute bars. Do you know if it is possible? Thanks for your help!

      Comment


        #4
        Hello xNICK,

        Thanks for your reply.

        A simple way to do this would be an if statement to see that you are in a position (long in this example) and then testing to see if bars close time minute equals a 5 minute interval.

        if (Position.MarketPosition == MarketPosition.Long && (Time[0].Minute == 0 || Time[0].Minute == 5 || Time[0].Minute == 10 .... || Time[0].Minute == 55)
        {
        // exit order here
        }


        Alternately, you can use the "%" operator which in C# computes the remainder after dividing its first operand by its second operand and code something like:

        if (Position.MarketPosition == MarketPosition.Long && (Time[0].Minute % 5 == 0))
        {
        //exit order here
        }

        Comment


          #5
          Hey Paul H,
          That is exactly what I've been looking for! Thanks so much for your time and help!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by CarlTrading, 03-31-2026, 09:41 PM
          1 response
          47 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          23 views
          0 likes
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          33 views
          1 like
          Last Post CaptainJack  
          Started by CarlTrading, 03-30-2026, 11:51 AM
          0 responses
          51 views
          0 likes
          Last Post CarlTrading  
          Started by CarlTrading, 03-30-2026, 11:48 AM
          0 responses
          42 views
          0 likes
          Last Post CarlTrading  
          Working...
          X