- Test with date range like 3/3 to 3/21, and 3/17 has 4 trades.
- Test ONLY 3/17 and it has 9 trades.
I use SystemPerformance.AllTrades.TradesPerformance.Curr ency.CumProfit to help me track daily PnL:
double previousStartOfDay = startOfDayCumProfit; startOfDayCumProfit = SystemPerformance.AllTrades.TradesPerformance.Curr ency.CumProfit;​
Comment