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

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