Summary
Provides access to market depth prices and volumes
Syntax
public interface MarketDepthEntry
Members
Name | Type | Summary |
---|---|---|
Price | Property | The price of this market depth entry |
VolumeInUnits | Property | The volume of this market depth entry |
Example 1
foreach (var marketDepthEntry in _marketDepth.AskEntries) { //The volume of this market depth entry volume = marketDepthEntry.Volume; //The price of this market depth entry price = marketDepthEntry.Price; }