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

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.)

    Paul H.NinjaTrader Customer Service

    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
        }

        Paul H.NinjaTrader Customer Service

        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 ender_wiggum, Today, 09:50 AM
          1 response
          5 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Started by rajendrasubedi2023, Today, 09:50 AM
          1 response
          11 views
          0 likes
          Last Post NinjaTrader_BrandonH  
          Started by geotrades1, Today, 10:02 AM
          0 responses
          4 views
          0 likes
          Last Post geotrades1  
          Started by bmartz, Today, 09:30 AM
          1 response
          8 views
          0 likes
          Last Post NinjaTrader_Erick  
          Started by geddyisodin, Today, 05:20 AM
          3 responses
          25 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Working...
          X