Isn't this saying Enter at the Ask(I know it's Last price for backtesting purposes) if possible but not more than 10 ticks above the Ask? When looking at the executions it seems to just always enter 10 ticks above the last price. It's acting more like EnterLongStopLimit() order it seems.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Enterlonglimit execution price
Collapse
X
-
Enterlonglimit execution price
For backtesting. When using EnterLongLimit(0,true,100,GetCurrentAsk() + (TickSize*10),"Entry");
Isn't this saying Enter at the Ask(I know it's Last price for backtesting purposes) if possible but not more than 10 ticks above the Ask? When looking at the executions it seems to just always enter 10 ticks above the last price. It's acting more like EnterLongStopLimit() order it seems.Tags: None
-
Can you give more detail on what you mean by "Marketable"? Are you saying that the order would be hanging out there for anyone to grab giving me a potential worst case fill even though there might be a better price currently available, therefore it would not be a good idea to use this method?
I'm just trying to avoid a fill any worse than 10 ticks above, so maybe instead I should use a condition for the spread something like Ask < last + 10 ticks.
Comment
-
Delta007, any limit order with a price equal or higher than the Ask (for buys) is marketable, in the sense immediately executable (this price or better, so triggered for a fill, no need to hold it). Some traders prefer this over true market orders, as they had quicker fill experiences especially if a market maker / specialist in involved. You can monitor the current spread as well, but this could of course change in the time your order is routed to the exchange, so spec'ing a limit price in will give you more control than a true market order.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
648 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
573 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
575 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment