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 kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
87 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
92 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
70 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
87 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
64 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment