Struct CandlePriceLevel
- Namespace
- StockSharp.Messages
- Assembly
- StockSharp.Messages.dll
The price level.
[DataContract]
public struct CandlePriceLevel
- Inherited Members
- Extension Methods
Properties
BuyCount
The number of bids.
[DataMember]
public int BuyCount { readonly get; set; }
Property Value
BuyVolume
The volume of bids.
[DataMember]
public decimal BuyVolume { readonly get; set; }
Property Value
BuyVolumes
The volumes collection of bids.
[DataMember]
public IEnumerable<decimal> BuyVolumes { readonly get; set; }
Property Value
Price
Price.
[DataMember]
public decimal Price { readonly get; set; }
Property Value
SellCount
The number of asks.
[DataMember]
public int SellCount { readonly get; set; }
Property Value
SellVolume
The volume of asks.
[DataMember]
public decimal SellVolume { readonly get; set; }
Property Value
SellVolumes
The volumes collection of asks.
[DataMember]
public IEnumerable<decimal> SellVolumes { readonly get; set; }
Property Value
TotalVolume
The volume of bids and asks.
[DataMember]
public decimal TotalVolume { readonly get; set; }