NinjaScript > Language Reference > Strategy > TradesPerformanceValues >

AvgProfit

Print this Topic Previous pageReturn to chapter overviewNext page

Definition
Returns the average profit of the collection.
 

Property Value

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

 

Syntax
<TradeCollection>.TradesPerformance.<TradesPerformanceValues>.AvgProfit

 

 

Examples

protected override void OnBarUpdate()
{
    // Print out the average profit of all trades in currency

    Print("Average profit of all trades is: " + Performance.AllTrades.TradesPerformance.Currency.AvgProfit);
}