Points

View as Markdown

Definition

Returns a TradesPerformanceValues object in points.

Property Value

A TradesPerformanceValues object that is represented in points.

Syntax

\<tradecollection\>.TradesPerformance.Points

Examples

protected override void OnBarUpdate()
{
// Print out the avg. profit of all trades in points
Print("Average profit: " + SystemPerformance.AllTrades.TradesPerformance.Points.AverageProfit);
}