Pips

View as Markdown

Definition

Returns a TradesPerformanceValues object in pips.

Property Value

A TradesPerformanceValues object that is represented in pips.

Syntax

\<tradecollection\>.TradesPerformance.Pips

Examples

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