Dean
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Change or calculate data within strategy builder
Collapse
X
-
Change or calculate data within strategy builder
In using Strategy builder is it possible without resorting to programming outside of the builder to place an order X number of tics away from the highest bar in n bars based on other conditions ?? If my signal is activated can I place an order 4 tics above from the highest bar in the past 10 bars is what I am trying to say.
DeanTags: None
-
Hello deanidavis475,
You could save the value of the highest high of x bars ago to a variable on each bar, and pass this price variable to a EnterLongLimit method, however adding the offset to this variable would not be possible in the editor.
I will add a feature request to be able to add an offset to variables.
You always could unlock the wizard and add this, which might look like.
Please let us know if you need further assistance.Code:Xvar = HighestBar(Close, 10); EnterLongLimit(Convert.ToInt32(DefaultQuantity), Xvar+[B]3*TickSize[/B], "");
Alan P.NinjaTrader Customer Service
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
88 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
134 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
119 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
67 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment