Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Limit as input
Collapse
X
-
Limit as input
I'm running a strategy now with the basic market entry, I'm wondering if its possible to have a input option to change the order from market to limit? and if so would it be possible to have an input entry for number of ticks off the limit example input limit, input 5 ticks. so if my strategy was entering long it would put an order out to be buying at $11.45 if the bid was $11.50
ThanksTags: None
-
pistolpete,
You could create a bool parameter and then code two branches for your code.
Same applies for your tick offset. You would just create an int parameter to do that.Code:if (someBool == true) { EnterLongLimit(...); } else if (someBool == false) { EnterLong(); }Josh P.NinjaTrader Customer Service
-
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
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
574 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment