CumProfit

View as Markdown

Definition

Returns the cumulative profit of the collection.

Property Value

A double value that represents the cumulative profit of the collection.

Syntax

\<tradecollection\>.TradesPerformance.\<tradesperformancevalues\>.CumProfit

Examples

1// Print out the cumulative profit of all trades in currency
2protected override void OnBarUpdate()
3{
4 // Print out the cumulative profit of all trades in currency
5 Print("Average cumulative profit of all trades is: " + SystemPerformance.AllTrades.TradesPerformance.Currency.CumProfit);
6}