Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Trouble with stop loss in strategy
Collapse
X
-
Hello Kudos,
Thank you for your post.
The syntax for this would be the following:For information on SetStopLoss() please visit the following link: http://www.ninjatrader.com/support/h...etstoploss.htmCode:SetStopLoss(CalculationMode.Ticks, Low[0] - (2*TickSize));
For information on TickSize please visit the following link: http://www.ninjatrader.com/support/h...7/ticksize.htm
Please let me know if I may be of further assistance.
-
Patrick Thank you for your reply
Testing the code in a very basic program it compiled just fine but it changed the program.. The test was a long only entry but now it goes short and long. The only part of code changed was the stop loss.
SetProfitTarget("long", CalculationMode.Ticks, 6);
SetStopLoss("long", CalculationMode.Ticks, 2, false);
Is what the wizard compiled. I changed the script to
SetProfitTarget("long", CalculationMode.Ticks, 6);
SetStopLoss("long", CalculationMode.Ticks, Low[0]-(2*TickSize), false);
The basic test with the wizard was if
low[0]<low[1]
and
close[0]>close[1]
go long and then profit of 6 nd the the stop loss
Thanks
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
88 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
48 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
30 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
34 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
68 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment