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.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
EnterLongStop()
Collapse
X
-
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.Tags: None
-
-
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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
65 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
35 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
59 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
62 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
51 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment