have 1 trade per day
this
SystemPerformance.AllTrades[SystemPerformance.AllTrades.Count - 1].ProfitCurrency
every day gives the same value of the last trade (which was made yesterday 12 Nov 2020)
I expect that the value will be relevant for the day in the past
bool isNewSession = sessionIterator.IsNewSession(Time[0],true);
if (isNewSession)
{
if (SystemPerformance.AllTrades.Count > 1) Print (SystemPerformance.AllTrades[SystemPerformance.AllTrades.Count - 1].ProfitCurrency );
}
321.12
321.12
321.12
321.12
321.12
etc.
what am I doing wrong please?

Comment