What is the preferred method for obtaining individual performance information?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Tracking Performance of Multiple Strategies on Same Instrument
Collapse
X
-
Tracking Performance of Multiple Strategies on Same Instrument
Hello, I want to run 6 different strategies on the ES and track the individual P/L performance of each strategy. If I use the Performance.AllTrades.TradesPerformance.Currency.C umProfit it seems to include all P/L from all 6 strategies.
What is the preferred method for obtaining individual performance information?Tags: None
-
Mikefra,
I would suggest in this case using separate simulation accounts.
The reasons can be read about here : http://www.ninjatrader.com/support/h..._account_p.htm
Here is more information on using multiple simulation accounts : http://www.ninjatrader.com/support/h...n_accounts.htmAdam P.NinjaTrader Customer Service
-
protected override void OnBarUpdate()
{
if (Bars.FirstBarOfSession)
{
// Store the strategy's prior cumulated realized profit and number of trades
priorTradesCount = Performance.RealtimeTrades.Count;
priorTradesCumProfit = Performance.RealtimeTrades.TradesPerformance.Curre ncy.CumProfit;
}
if (Performance.RealtimeTrades.TradesPerformance.Curr ency.CumProfit - priorTradesCumProfit > 0
&& Performance.RealtimeTrades.Count - priorTradesCount >= 1)
{
targetReachedToday = true;
}
if (Performance.RealtimeTrades.TradesPerformance.Curr ency.CumProfit - priorTradesCumProfit < 0
&& Performance.RealtimeTrades.Count - priorTradesCount > 0)
{
trySecondLevel = true;
}
if (Performance.RealtimeTrades.Count - priorTradesCount > 1)
{
trySecondLevel = false;
targetReachedToday = true;
}
if (CurrentBar < 2) return;
if (Time[0].DayOfWeek != Time[1].DayOfWeek) // new day, reset bool flag
{
targetReachedToday = false;
trySecondLevel = false;
}
DrawTextFixed("MyTag0", ("The strategy has taken " + Performance.RealtimeTrades.Count + " real-time trades."), TextPosition.TopRight);
DrawTextFixed("MyTag1", ("SecondLevel=" + trySecondLevel + " TargetReached=" + targetReachedToday), TextPosition.BottomLeft);
DrawTextFixed("MyTag2", (Performance.RealtimeTrades.Count - priorTradesCount).ToString(), TextPosition.TopLeft);
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
105 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
146 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
71 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
125 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
79 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment