LargestLoser

View as Markdown

Definition

Returns the largest loss amount of the collection.

Property Value

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

Syntax

\<tradecollection\>.TradesPerformance.\<tradesperformancevalues\>.LargestLoser

Examples

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