Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

EnterLongStop()

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

    EnterLongStop()

    While back testing if I set CalculateOnBarClose = true and if (EMA(5)[0] > EMA(10)[0]) EnterLongStop(High[0] + TickSize);

    Can you please tell me what will happen if the price of the next bar is greater than High[0] + TickSize? I notice sometimes I'll get executed at the opening price other times I'll get executed at the closing price and sometimes executed at a price within the trading range.

    #2
    d.allen101, thanks for the post, in backtesting CalculateOnBarClose would always be true.

    What you place here then is a Stop order that activates a market order, so the fill price could vary according to market dynamics seen once the triggered.

    Comment


      #3
      How is the fill price being determined during back testing?

      Comment


        #4
        The price would be determined by the fill type used - for example for a stop order on the default fill type the following would be exactly done -

        if (order.OrderAction == Cbi.OrderAction.Buy || order.OrderAction == Cbi.OrderAction.BuyToCover)

        FillPrice = order.StopPrice < nextOpen - epsilon ? Math.Min(nextHigh, nextOpen + SlippagePoints) : Math.Min(nextHigh, order.StopPrice + SlippagePoints);
        else
        FillPrice = order.StopPrice > nextOpen + epsilon ? Math.Max(nextLow, nextOpen - SlippagePoints) : Math.Max(nextLow, order.StopPrice - SlippagePoints);

        So slippage can be applied, but it would not allow for fills outside the bar you trade on.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        59 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        143 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        161 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        97 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        276 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Working...
        X