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 DannyP96, 05-18-2026, 02:38 PM
|
1 response
25 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
115 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
69 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
226 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
411 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|

Comment