Are tradecollection class strategy specific?
I copied an example form help guide. Are the 20 trades referring to the startegy using this calculation or all trades no matter what strategy?
protected override void OnBarUpdate()
{
// Once the strategy has executed 20 trades loop through the losing trades
// collection and print out the PnL on only long trades
if (Performance.AllTrades.Count == 20)

Comment