Or is this by default what are the settings?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Execution Price
Collapse
X
-
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?Tags: None
-
-
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
-
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
111 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
59 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
38 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
78 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment