Skip to content

MarketDepthEntry

Summary

Provides access to market depth prices and volumes

Signature

1
public abstract interface MarketDepthEntry

Namespace

cAlgo.API

Properties

Name Description
Volume { get; }
VolumeInUnits { get; } The volume of this market depth entry
Price { get; } The price of this market depth entry

Examples

1
2
3
4
5
6
7
 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;    
 }

Last update: March 23, 2023