AverageEtd

View as Markdown

Definition

Returns the average ETD (end trade draw down) of the collection.

Property Value

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

Syntax

TradesCollection.TradesPerformance.TradesPerformanceValues.AverageEtd

Examples

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