Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

bug with unmanaged orders and exit on close

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

    bug with unmanaged orders and exit on close

    I've found that if an entry order is palced on the last bar of session when being flat with managed orders disabled and exit on close enabled, the entry order executes on the close of the of the last bar of the session resulting in a possition held over night.

    #2
    darckeen, is this a MultiSeries script and are you submitting orders to the primary series only at this point?
    BertrandNinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_Bertrand View Post
      darckeen, is this a MultiSeries script and are you submitting orders to the primary series only at this point?
      Yup its a multisereis single instrument strategy, the entry order is submitted to the primary bar series but on the secondary series update.

      Comment


        #4
        If you submitted to the primary series the end of session handling should've caught it - would you mind sending me your script for testing and looking into here?

        Thanks
        BertrandNinjaTrader Customer Service

        Comment


          #5
          primary instrument is SPY 5 minute

          Code:
           
          protected override void Initialize()
          {
          CalculateOnBarClose = true;
          this.ExitOnClose = true;
          this.Unmanaged = true;
          Add("SPY",PeriodType.Minute,30);
          }
          /// <summary>
          /// Called on each bar update event (incoming tick)
          /// </summary>
          protected override void OnBarUpdate()
          {
          DateTime bartime = (DateTime)Times[BarsInProgress][0];
          if (bartime.Hour == 16 && BarsInProgress == 1) SubmitOrder(0,OrderAction.Buy,OrderType.Market,100,0,0,"","");
          }

          Comment


            #6
            darckeen,

            This is expected. You have both bars of the same instrument and as such ExitOnClose is only applicable to the primary series of the instrument. Since the secondary series is processed after the primary, you are submitting the order from the secondary which means the ExitOnClose logic was already done and over with at the time you submitted the order. This further means the order goes in after the fact and so as such you will indeed be in a position overnight with this strategy logic.
            Josh P.NinjaTrader Customer Service

            Comment


              #7
              Hello

              by searching for an answer i ran into this thread.

              (unmanaged approach)
              my question is when exit on close was the reason for executing how to track it in OnExecution(IExecution execution):
              if (execution=ExitOnCLose)???

              tx

              Comment


                #8
                Hello yeshe,

                Thank you for your post.

                The code would be the following:
                Code:
                if(execution.Name == "Exit on close")

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by Mestor, 03-10-2023, 01:50 AM
                16 responses
                388 views
                0 likes
                Last Post z.franck  
                Started by rtwave, 04-12-2024, 09:30 AM
                4 responses
                31 views
                0 likes
                Last Post rtwave
                by rtwave
                 
                Started by yertle, Yesterday, 08:38 AM
                7 responses
                29 views
                0 likes
                Last Post yertle
                by yertle
                 
                Started by bmartz, 03-12-2024, 06:12 AM
                2 responses
                22 views
                0 likes
                Last Post bmartz
                by bmartz
                 
                Started by funk10101, Today, 12:02 AM
                0 responses
                7 views
                0 likes
                Last Post funk10101  
                Working...
                X