Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Stopping Strategy
Collapse
X
-
-
-
-
Stop Strategy after certain profit gain in pips
In case it helps anyone, this is the coding that works for closing positions, and stopping a strategy, after reaching a certain pip gain, on GBP, including unrealized and realized profit:
// If the profit on real-time trades is >= 20 pips stop trading
if ((Performance.AllTrades.TradesPerformance.Points.C umProfit + Position.GetProfitLoss(Close[0],PerformanceUnit.Points) >= 20*.0001))
{
StopStrategy();
return;
}
Thanks NinjaTrader_Dierk for your help.
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
648 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