AverageTotalEfficiency

View as Markdown

Definition

Returns the average total efficiency.

Property Value

A double value that represents the average total efficiency.

Syntax

TradesPerformance.AverageTotalEfficiency

Examples

1protected override void OnBarUpdate()
2{
3 // Print out the average total efficiency
4 Print("Average total efficiency is: " + SystemPerformance.AllTrades.TradesPerformance.AverageTotalEfficiency);
5}