VolumeInUnits Property¶ Summary¶ Volume of this order. Signature¶ 1public abstract double VolumeInUnits {get;} Return Value¶ double Declaring Type¶ cAlgo.API.PendingOrder Examples¶ 1 2 3 var result = PlaceLimitOrder(TradeType.Buy, Symbol, 10000, targetPrice); var order = result.PendingOrder; Print("The order's volume is: {0}", order.VolumeInUnits); Last update: January 30, 2023