Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
SampleScaleOut Strategy
Collapse
X
-
Hi traderT, you will need to debug when the order at this level is placed, the order statement EnterLongLimit just allows you to place an order at a specified limit / level price. So in your case you need to define a condition that returns true when the level is approached as retracement, then you can go ahead and place your limit order.
-
Like this?
So something like this? ...
if ((Low[1] > entryAValue)
&& (Low[0] <= entryAValue)
&& (longCount == 0))
{
EnterLongLimit(entryAValue, "Buy1");
SetProfitTarget("Buy1", CalculationMode.Price, targetAValue);
}
...but would this not execute the order on the next bar?
Comment
-
CalculateOnBarClose
I was told to remove CalculateOnBarClose alltogether as there was a bug with it. See http://www.ninjatrader-support2.com/...ad.php?t=13276.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
647 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment