Class Quote
Represent access to quote information.
Namespace: TradingPlatform.BusinessLayer
Syntax
public class Quote : MessageQuote
Properties
Ask
Ask price
Declaration
public double Ask { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
AskSize
Ask size
Declaration
public double AskSize { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
AskTickDirection
Shows the direction of ask price movement, comparing to previous value.
Declaration
public TickDirection AskTickDirection { get; }
Property Value
Type | Description |
---|---|
TradingPlatform.BusinessLayer.TickDirection |
Bid
Bid price
Declaration
public double Bid { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
BidSize
Bid size
Declaration
public double BidSize { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
BidTickDirection
Shows the direction of bid price movement, comparing to previous value.
Declaration
public TickDirection BidTickDirection { get; }
Property Value
Type | Description |
---|---|
TradingPlatform.BusinessLayer.TickDirection |