Pricing

StockSharp.Oanda.Native.DataTypes

Properties

Asks
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.

Bids
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.

CloseoutAsk
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.

CloseoutBid
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.

Instrument
public string Instrument { get; set; }
value = pricing.Instrument
pricing.Instrument = value

The Price’s Instrument.

Tradeable
public bool Tradeable { get; set; }
value = pricing.Tradeable
pricing.Tradeable = value

Flag indicating if the Price is tradeable or not.