Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
setting a buy order 25% above a swing low
Collapse
X
-
setting a buy order 25% above a swing low
what are the non coding specifications to set such that when price is 25% above a swing low to enter? -
Hello, thanks for writing in. I am going to provide information about the strategy builder. The builder can only perform arithmetic on the single indicator values, so you can add or subtract hard coded values but not variables (such as 25% of the closing bar).
The calculation, in general, is (High - Low) * 0.25;
The condition if((Swing(Close, 5).SwingHigh[0] + (High[0] - Low[0]) * 0.25) < Close[0])
- Likes 1
-
Comment
-
Comment
-
Hi, unfortunately, I will not be able to debug your code for you but as a courtesy this time, I can tell you that EnterLong() needs at least 1 in the quantity field, and from the screen shot it looks like you have this code snippet outside of the OnBarUpdate method. The best way to debug a script to see data that it is processing is to use the Print function. See more details on this here:
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
58 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
34 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
196 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
362 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
281 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment