Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Retrieve exit price within a strategy
Collapse
X
-
Retrieve exit price within a strategy
Can some one please point me in the right direction to get the exit price when executing ExitLong() etc within a strategy? I can get the entry price with Position.AvgPrice but the exit price eludes me.
ThanksTags: None
- Likes 1
-
Use the Performance.RealtimeTrades and Performance.AllTrades class, some examples can be found in the help guide.
Below is a quick example cut and paste from one of my older strategies, I can't remember 100% but think it works
MikeCode:if (BarsSinceExit() >= 0 && Performance.RealtimeTrades.Count > 0) { Trade lastTrade = Performance.RealtimeTrades[Performance.AllTrades.Count - 1]; if (lastTrade != null) { string PnLText = null; System.Drawing.Color PnLColor = Color.CornflowerBlue; PnLText = "PnL: " + Instrument.MasterInstrument.Round2TickSize(Performance.RealtimeTrades.TradesPerformance.Points.CumProfit) + " points (" + Performance.RealtimeTrades.Count + " trades)\nLast: " + lastTrade.Entry.MarketPosition + " " + lastTrade.Entry.Price.ToString("0.00") + ", out " + lastTrade.Exit.Price.ToString("0.00"); if (lastTrade.ProfitPoints > 0) PnLText += " (+"; if (lastTrade.ProfitPoints < 0) PnLText += " ("; if (lastTrade.ProfitPoints == 0) PnLText += " ("; PnLText += lastTrade.ProfitPoints + ")\n "; if (Performance.RealtimeTrades.TradesPerformance.Points.CumProfit > 0) PnLColor = Color.CornflowerBlue; if (Performance.RealtimeTrades.TradesPerformance.Points.CumProfit < 0) PnLColor = Color.Maroon; DrawTextFixed("Realized PnL", PnLText, TextPosition.BottomLeft, PnLColor, new Font("Arial", 10), Color.Black, Color.Black, 5); } }
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
161 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
309 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
349 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment