LargestWinner

View as Markdown

Definition

Returns the largest win amount of the collection.

Property Value

A double value that represents the largest win amount of the collection.

Syntax

\<tradecollection\>.TradesPerformance.\<tradesperformancevalues\>.LargestWinner

Examples

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