Price Property¶ Summary¶ The price of this market depth entry Signature¶ 1public abstract double Price {get;} Return Value¶ double Declaring Type¶ cAlgo.API.MarketDepthEntry Examples¶ 1 2 3 4 for(int i = 0; i < _marketDepth.AskEntries.Count; i++) { price = _marketDepth.AskEntries[i].Price; } Last update: March 23, 2023