AllTrades

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

AllTrades

Return to chapter overview

Definition

A TradeCollection object of all trades generated by a strategy.

 

Syntax

SystemPerformance.AllTrades

 

Examples

ns

protected override void OnBarUpdate()
{
    // Print out the number of long trades
    Print("The strategy has taken " + SystemPerformance.AllTrades.Count + " trades.");
}