VolumeInUnits Property¶ Summary¶ The volume of this market depth entry Signature¶ 1public abstract double VolumeInUnits {get;} Return Value¶ double Declaring Type¶ cAlgo.API.MarketDepthEntry Examples¶ 1 2 3 4 foreach (var entry in _marketDepth.AskEntries) { volume = entry.VolumeInUnits; } Last update: March 23, 2023