Definition
Gets the current position size.
Property Value
An int value representing the position size.
Syntax
Position.Quantity
Examples
protected override void OnBarUpdate()
{
Print(Position.MarketPosition.ToString() + " " + Position.Quantity.ToString());
}
|
|
|