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 NullPointStrategies, Today, 05:17 AM
|
0 responses
50 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
69 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment