QuoteChange
StockSharp.Messages
Market depth quote representing bid or ask.
Constructors
QuoteChange
public QuoteChange(decimal price, decimal volume, int? ordersCount, QuoteConditions condition)
quoteChange = QuoteChange(price, volume, ordersCount, condition)
Market depth quote representing bid or ask.
- price
- Quote price.
- volume
- Quote volume.
- ordersCount
- Orders count.
- condition
- Quote condition.
Properties
Action
public QuoteChangeActions? Action { get; set; }
value = quoteChange.Action
quoteChange.Action = value
Change action.
BoardCode
public string BoardCode { get; set; }
value = quoteChange.BoardCode
quoteChange.BoardCode = value
Electronic board code.
Condition
public QuoteConditions Condition { get; set; }
value = quoteChange.Condition
quoteChange.Condition = value
Quote condition.
EndPosition
public int? EndPosition { get; set; }
value = quoteChange.EndPosition
quoteChange.EndPosition = value
End position, related for Action.
InnerQuotes
public QuoteChange[] InnerQuotes { get; set; }
value = quoteChange.InnerQuotes
quoteChange.InnerQuotes = value
Collection of enclosed quotes, which are combined into a single quote.
OrdersCount
public int? OrdersCount { get; set; }
value = quoteChange.OrdersCount
quoteChange.OrdersCount = value
Orders count.
Price
public decimal Price { get; set; }
value = quoteChange.Price
quoteChange.Price = value
Quote price.
StartPosition
public int? StartPosition { get; set; }
value = quoteChange.StartPosition
quoteChange.StartPosition = value
Start position, related for Action.
Volume
public decimal Volume { get; set; }
value = quoteChange.Volume
quoteChange.Volume = value
Quote volume.
Methods
ToString
public override string ToString()
result = quoteChange.ToString()
Преобразовать к строковому представлению.
Returns: Строковое представление.