My current code looks something like this.
winningTrades = (Performance.AllTrades.WinningTrades.Count);
allTrades = (Performance.AlllTrades.Count);
winningPercent = (winningTrades/allTrades);
I am having trouble making this code only look a the last 10 or so trades that have been executed.

Comment