Class CandlePriceLevel
The price level.
Namespace: StockSharp.Messages
Assembly: StockSharp.Messages.dll
Syntax
public sealed class CandlePriceLevel : ValueType
Properties
BuyCount
The number of bids.
Declaration
public int BuyCount { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
BuyVolume
The volume of bids.
Declaration
public Decimal BuyVolume { get; set; }
Property Value
Type | Description |
---|---|
Decimal |
BuyVolumes
The volumes collection of bids.
Declaration
public IEnumerable<Decimal> BuyVolumes { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<Decimal> |
Price
Price.
Declaration
public Decimal Price { get; set; }
Property Value
Type | Description |
---|---|
Decimal |
SellCount
The number of asks.
Declaration
public int SellCount { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
SellVolume
The volume of asks.
Declaration
public Decimal SellVolume { get; set; }
Property Value
Type | Description |
---|---|
Decimal |
SellVolumes
The volumes collection of asks.
Declaration
public IEnumerable<Decimal> SellVolumes { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<Decimal> |
TotalVolume
The volume of bids and asks.
Declaration
public Decimal TotalVolume { get; set; }
Property Value
Type | Description |
---|---|
Decimal |