Ticks

View as Markdown

Definition

Returns a TradesPerformanceValues object in ticks.

Property Value

A TradesPerformanceValues object that is represented in ticks.

Syntax

\<tradecollection\>.TradesPerformance.Ticks

Examples

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