AverageExitEfficiency

View as Markdown

Definition

Returns the average exit efficiency.

Property Value

A double value that represents the average exit efficiency.

Syntax

TradesPerformance.AverageExitEfficiency

Examples

protected override void OnBarUpdate()
{
// Print out the average exit efficiency
Print("Average exit efficiency is: " + SystemPerformance.AllTrades.TradesPerformance.AverageExitEfficiency);
}