Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

OrderFillResolution

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

    OrderFillResolution

    Good morning,

    I would like to check out the OrderFillResolution feature but it's always disabled. I tried setting it to High in my strategy and it still loads Standard when I load the strategy. Is there a switch in Options like you have for TickReplay I'm supposed to check? I tried looking for one but it isn't obvious enough for me.

    #2
    Hello traderpards,

    Is this grayed out and cannot be selected?

    TickReplay and Order Fill Resolution as High cannot be used at the same time.

    May I confirm TickReplay is disabled?

    Is historical tick data available for the instrument with your connection?


    Alternatively, you can add a 1 tick series to the script to add intra-bar granularity for high order fill accuracy.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Hey Chelsea,

      Thank you for replying... Yes, I have TickReplay checked so that would explain that - strategy's indicators need that. What I'm trying to do is get the historical to reflect when my strategy is moving the stop to breakeven, which I'm checking for (the conditionals required to move it to BE) and moving within a 1-second background data series. You would think the historical would reflect that but it doesn't. I did add a 1 tick data series for the heck of it and it still doesn't reflect that. (Calculate is OnBarClose)

      Click image for larger version

Name:	RealVHistorical.png
Views:	260
Size:	126.6 KB
ID:	1080810

      That's why I was hoping to see if the order fill resolution would help. I guess I'm out of luck...

      Thanks anyway!

      Comment


        #4
        Hello traderpards,

        Use a 1 tick added series for intra-bar granularity for order fill accuracy while also using TickReplay for indicators.
        Chelsea B.NinjaTrader Customer Service

        Comment


          #5
          I did...
          Code:
                  protected override void OnStateChange()
                  {
                      base.OnStateChange();
          
                      if (State == State.SetDefaults)
                      else if (State == State.Configure)
                      {
                          AddDataSeries(BarsPeriodType.Second, 1);
                          AddDataSeries(BarsPeriodType.Minute, HVN30Period);
                          AddDataSeries(BarsPeriodType.Minute, HVN60Period);
                          AddDataSeries(BarsPeriodType.Day, 1);
                          AddDataSeries(BarsPeriodType.Tick, 1);
          
                          // Add the menu items to the context menu
                          if (ChartControl != null)

          Comment


            #6
            Hello traderpards.

            Submit the orders to BarsInProgress 1 and you have the equivalent of Order Fill Resolution High set to 1 tick.
            Chelsea B.NinjaTrader Customer Service

            Comment


              #7
              Ahhh... I didn't know that. Thanks, I'll do that!

              Comment


                #8
                It worked! Yay! Thanks Chelea!


                Click image for larger version

Name:	Real.png
Views:	232
Size:	90.8 KB
ID:	1080838

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by AttiM, 02-14-2024, 05:20 PM
                11 responses
                184 views
                0 likes
                Last Post NinjaTrader_ChelseaB  
                Started by fernandobr, Today, 09:11 AM
                1 response
                3 views
                0 likes
                Last Post NinjaTrader_Erick  
                Started by timmbbo, Today, 08:59 AM
                1 response
                3 views
                0 likes
                Last Post NinjaTrader_ChelseaB  
                Started by KennyK, 05-29-2017, 02:02 AM
                3 responses
                1,281 views
                0 likes
                Last Post NinjaTrader_Clayton  
                Started by itrader46, Today, 09:04 AM
                1 response
                6 views
                0 likes
                Last Post NinjaTrader_Clayton  
                Working...
                X