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 judysamnt7, 03-13-2023, 09:11 AM
          4 responses
          58 views
          0 likes
          Last Post DynamicTest  
          Started by ScottWalsh, Today, 06:52 PM
          4 responses
          36 views
          0 likes
          Last Post ScottWalsh  
          Started by olisav57, Today, 07:39 PM
          0 responses
          7 views
          0 likes
          Last Post olisav57  
          Started by trilliantrader, Today, 03:01 PM
          2 responses
          21 views
          0 likes
          Last Post helpwanted  
          Started by cre8able, Today, 07:24 PM
          0 responses
          9 views
          0 likes
          Last Post cre8able  
          Working...
          X