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 cmoran13, Yesterday, 01:02 PM
|
0 responses
30 views
0 likes
|
Last Post
by cmoran13
Yesterday, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
22 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
160 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
95 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
148 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment