Pricing
Properties
public IEnumerable<Quote> Asks { get; set; }
value = pricing.Asks
pricing.Asks = value
The list of prices and liquidity available on the Instrument’s ask side. It is possible for this list to be empty if there is no ask liquidity currently available for the Instrument in the Account.
public IEnumerable<Quote> Bids { get; set; }
value = pricing.Bids
pricing.Bids = value
The list of prices and liquidity available on the Instrument’s bid side. It is possible for this list to be empty if there is no bid liquidity currently available for the Instrument in the Account.
public double CloseoutAsk { get; set; }
value = pricing.CloseoutAsk
pricing.CloseoutAsk = value
The closeout ask Price. This Price is used when a ask is required to closeout a Position (margin closeout or manual) yet there is no ask liquidity. The closeout ask is never used to open a new position.
public double CloseoutBid { get; set; }
value = pricing.CloseoutBid
pricing.CloseoutBid = value
The closeout bid Price. This Price is used when a bid is required to closeout a Position (margin closeout or manual) yet there is no bid liquidity. The closeout bid is never used to open a new position.
public string Instrument { get; set; }
value = pricing.Instrument
pricing.Instrument = value
The Price’s Instrument.
public bool Tradeable { get; set; }
value = pricing.Tradeable
pricing.Tradeable = value
Flag indicating if the Price is tradeable or not.