LargestWinner

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Strategy > TradesPerformanceValues >

LargestWinner

Previous page Return to chapter overview Next page

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

ns

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