TotalQuantity

View as Markdown

Definition

Returns the total quantity.

Property Value

A double value that represents the total quantity.

Syntax

\<tradecollection\>.TradesPerformance.TotalQuantity

Examples

1protected override void OnBarUpdate()
2{
3 // Print out the total quantity of all trades
4 Print("Total quantity is: " + SystemPerformance.AllTrades.TradesPerformance.TotalQuantity);
5}