Just as an example say I have 3 instruments that have the following p&l on 1/1/12..
SPY -500
QQQ -400
DIA +200
Total Combined Loss for day -700. Looking to print "1/1/12 -700" to the output window.
I tried something like this below but doesn't seem to be working
if (Bars.FirstBarOfSession)
{
priorTradesCumProfit = Performance.AllTrades.TradesPerformance.Points.CumProfit;
}
//Entry conditions in here..
{
EnterLong(200, "");
Print(Performance.AllTrades.TradesPerformance.Points.CumProfit - priorTradesCumProfit);
Print(Times[2][0].ToString());
}

Comment