Table of Contents

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

int

BuyVolume

The volume of bids.

[DataMember]
public decimal BuyVolume { readonly get; set; }

Property Value

decimal

BuyVolumes

The volumes collection of bids.

[DataMember]
public IEnumerable<decimal> BuyVolumes { readonly get; set; }

Property Value

IEnumerable<decimal>

Price

Price.

[DataMember]
public decimal Price { readonly get; set; }

Property Value

decimal

SellCount

The number of asks.

[DataMember]
public int SellCount { readonly get; set; }

Property Value

int

SellVolume

The volume of asks.

[DataMember]
public decimal SellVolume { readonly get; set; }

Property Value

decimal

SellVolumes

The volumes collection of asks.

[DataMember]
public IEnumerable<decimal> SellVolumes { readonly get; set; }

Property Value

IEnumerable<decimal>

TotalVolume

The volume of bids and asks.

[DataMember]
public decimal TotalVolume { readonly get; set; }

Property Value

decimal