Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Execution Price

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

    Execution Price

    Just to clarify If I have the Bid Ask Last database, can I determine the execution price to be whether Bid Ask or Last?

    Or is this by default what are the settings?

    #2
    Oil_Trader, are you talking about backtesting or Market Replay / Realtimetrading?

    Comment


      #3
      I am asking with regards to backtesting with Strategy Analyzer.

      Comment


        #4
        Per default the Last is used in backtesting, you could though create a MultiSeries strategy and then submit orders to the dedicated Bid / Ask series to create more realistic fill assumptions.

        Comment


          #5
          When it fills with the "last price"...does the volume correspond as well?

          Ex: I send a LONG market order for 100 contracts.

          11:30:04am Last 90.01 x 40
          11:30:05am Last 90.02 x 60

          how does the Strategy Analyzer calculate the fill price for 100 contracts?

          Does it just fill with the 90.01 price?

          Does it average with the 2 prices to fill the entire 100 contracts?

          Comment


            #6
            Oil_Trader, you can look into the fill type used in the bin > custom > type folder to see the logic per order type - for a market order the fill is assumed to be the open of the next bar :

            if (order.OrderType == OrderType.Market)
            {
            if (order.OrderAction == Cbi.OrderAction.Buy || order.OrderAction == Cbi.OrderAction.BuyToCover) // set fill price
            FillPrice = Math.Min(NextHigh, NextOpen + SlippagePoints);
            else
            FillPrice = Math.Max(NextLow, NextOpen - SlippagePoints);
            }

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by argusthome, 03-08-2026, 10:06 AM
            0 responses
            105 views
            0 likes
            Last Post argusthome  
            Started by NabilKhattabi, 03-06-2026, 11:18 AM
            0 responses
            53 views
            0 likes
            Last Post NabilKhattabi  
            Started by Deep42, 03-06-2026, 12:28 AM
            0 responses
            35 views
            0 likes
            Last Post Deep42
            by Deep42
             
            Started by TheRealMorford, 03-05-2026, 06:15 PM
            0 responses
            38 views
            0 likes
            Last Post TheRealMorford  
            Started by Mindset, 02-28-2026, 06:16 AM
            0 responses
            74 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Working...
            X