CumProfit

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

CumProfit

Return to chapter overview

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

ns

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