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

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