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

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