I am trying to get performance data for a subset of the trades. I know I can get this for a single trade by
Trade singleTrade = Performance.AllTrades[Performance.AllTrades.Count - 1]
and all trades by
Trade trades = Performance.AllTrades
but I am having difficulty getting a subset.
Ideally, by using the perfomance data, the calculations for the metrics (i.e. max consecutive winners, etc) will be calculated automatically and I won't have to write all that code.
This seems like it should be simple but apparently it isn't.
Best Regards,
Scott

Comment