Table of Contents

Struct QuoteChange

Namespace
StockSharp.Messages
Assembly
StockSharp.Messages.dll

Market depth quote representing bid or ask.

[DataContract]
public struct QuoteChange
Inherited Members
Extension Methods

Constructors

QuoteChange(decimal, decimal, int?, QuoteConditions)

Initializes a new instance of the QuoteChange.

public QuoteChange(decimal price, decimal volume, int? ordersCount = null, QuoteConditions condition = QuoteConditions.Active)

Parameters

price decimal

Quote price.

volume decimal

Quote volume.

ordersCount int?

Orders count.

condition QuoteConditions

Quote condition.

Properties

Action

Change action.

[DataMember]
public QuoteChangeActions? Action { readonly get; set; }

Property Value

QuoteChangeActions?

BoardCode

Electronic board code.

[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Board", Description = "BoardCode", GroupName = "General")]
public string BoardCode { readonly get; set; }

Property Value

string

Condition

Quote condition.

[DataMember]
public QuoteConditions Condition { readonly get; set; }

Property Value

QuoteConditions

EndPosition

End position, related for Action.

[DataMember]
public int? EndPosition { readonly get; set; }

Property Value

int?

InnerQuotes

Collection of enclosed quotes, which are combined into a single quote.

public QuoteChange[] InnerQuotes { get; set; }

Property Value

QuoteChange[]

OrdersCount

Orders count.

[DataMember]
public int? OrdersCount { readonly get; set; }

Property Value

int?

Price

Quote price.

[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Price", Description = "QuotePrice", GroupName = "General")]
public decimal Price { readonly get; set; }

Property Value

decimal

StartPosition

Start position, related for Action.

[DataMember]
public int? StartPosition { readonly get; set; }

Property Value

int?

Volume

Quote volume.

[DataMember]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Volume", Description = "QuoteVolume", GroupName = "General")]
public decimal Volume { readonly get; set; }

Property Value

decimal

Methods

ToString()

public override string ToString()

Returns

string