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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
669 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
378 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
111 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
575 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
580 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment