Percent

View as Markdown

Definition

Returns a TradesPerformanceValues object in percent.

Property Value

A TradesPerformanceValues object that is represented in percent.

Syntax

\<tradecollection\>.TradesPerformance.Percent

Examples

1protected override void OnBarUpdate()
2{
3 // Print out the avg. profit of all trades in percent
4 Print("Average profit: " + SystemPerformance.AllTrades.TradesPerformance.Percent.AverageProfit);
5}