Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
track price set by attach to indicator
Collapse
X
-
track price set by attach to indicator
I use the attach to indicator entry method often using MIT orders. sometimes, I notice that the order is not filled as the spread is bit high. is there a way, I can alert myself when my order price is just between the bid and ask so I can just make it into a market order?Tags: None
-
Hello junkone,
Thank you for your note.
Use an Order object to hold the order and then check it's level against the needed prices. If it meets the criteria then submit it as a different order.
For example:
For information on Order objects please visit the following link: http://ninjatrader.com/support/helpG...n-us/order.htmCode:MyOrder = EnterLongMIT(Close[0] - (2 * TickSize)); if (MyOrder.StopPrice < GetCurrentAsk() && MyOrder.StopPrice > GetCurrentBid()) { MyOrder = EnterLong(); }
-
Hello junone,
You could check the order on the SuperDOM using a custom column and OnOrderUpdate(): http://ninjatrader.com/support/helpG...rderupdate.htm
Comment
-
Hello junkone,
Thank you for your response.
You can find descriptions at the following link under "Understanding the default system columns": http://ninjatrader.com/support/helpG...om_columns.htm
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, Today, 06:46 AM
|
0 responses
8 views
0 likes
|
Last Post
by Mindset
Today, 06:46 AM
|
||
|
Started by M4ndoo, Yesterday, 05:21 PM
|
0 responses
13 views
0 likes
|
Last Post
by M4ndoo
Yesterday, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
15 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
82 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
47 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment