shane
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
calculated stop order price ?
Collapse
X
-
Tags: None
-
Comment
-
adam
sorry, no but the code is similar ; here it is
{
// Condition set 1
if (RSI(Rsi, Smooth).Avg[0] > 70
&& Rising(RSI(14, 3).Avg) == true)
{
EnterLong(DefaultQuantity, "");
}
// Condition set 2
if (Falling(RSI(Rsi, Smooth).Avg) == true)
{
ExitLong("", "");
}
// Condition set 3
if (RSI(Rsi, Smooth).Avg[0] < 30
&& Falling(RSI(Rsi, Smooth).Avg) == true)
{
EnterShort(DefaultQuantity, "");
}
// Condition set 4
if (Rising(RSI(Rsi, Smooth).Avg) == true)
{
ExitShort("", "");
}
Comment
-
shane,
This is saying that your SetStopLoss() calculation is smaller than or equal to zero for some reason here.
I see you are just setting it once :
SetStopLoss("", CalculationMode.Percent, 1, false);
I am wondering if that "else if" addition I showed you would fix this as well. Are you operating with COBC = false when you run the strategy? I can see in the code itself you have COBC = true.
COBC = abbreviation for CalculateOnBarClose;Adam P.NinjaTrader Customer Service
Comment
-
Comment
-
-
shane,
It looks like Matthew requested some files from you in another thread. We would like to take a closer look if possible so it would be appreciated if you could send these.
Here is the thread : http://www.ninjatrader.com/support/f...ad.php?t=52413
We believe there is some relation between all three issues you were describing in the threads, and would like to look closer.Adam P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, Yesterday, 11:51 AM
|
0 responses
16 views
0 likes
|
Last Post
by CarlTrading
Yesterday, 11:51 AM
|
||
|
Started by CarlTrading, Yesterday, 11:48 AM
|
0 responses
21 views
0 likes
|
Last Post
by CarlTrading
Yesterday, 11:48 AM
|
||
|
Started by CaptainJack, 03-25-2026, 09:53 PM
|
0 responses
16 views
0 likes
|
Last Post
by CaptainJack
03-25-2026, 09:53 PM
|
||
|
Started by CaptainJack, 03-25-2026, 09:51 PM
|
0 responses
13 views
0 likes
|
Last Post
by CaptainJack
03-25-2026, 09:51 PM
|
||
|
Started by Mindset, 03-23-2026, 11:13 AM
|
0 responses
20 views
0 likes
|
Last Post
by Mindset
03-23-2026, 11:13 AM
|

Comment