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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
48 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
30 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
99 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
177 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
170 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment