Pricing
Eigenschaften
public IEnumerable<Quote> Asks { get; set; }
value = pricing.Asks
pricing.Asks = value
Auf der Nachfrageseite des Instruments ist eine Liste der Preise und der Liquidität verfügbar, die leer sein kann, wenn derzeit keine Nachfrageliquidität für das Instrument auf dem Konto verfügbar ist.
public IEnumerable<Quote> Bids { get; set; }
value = pricing.Bids
pricing.Bids = value
Auf der Angebotsseite des Instruments verfügbare Liste der Preise und der Liquidität; diese Liste kann leer sein, wenn auf dem Konto derzeit keine Gebotsliquidität für das Instrument verfügbar ist.
public double CloseoutAsk { get; set; }
value = pricing.CloseoutAsk
pricing.CloseoutAsk = value
Der Closeout Ask Price. Dieser Price wird verwendet, wenn eine Anfrage zum Closeout einer Position erforderlich ist (Margin Closeout oder manuell), aber es keine Anfrage-Liquidität gibt.
public double CloseoutBid { get; set; }
value = pricing.CloseoutBid
pricing.CloseoutBid = value
Der Closeout-Gebotspreis: Dieser Preis wird verwendet, wenn ein Gebot zur Closeout-Position erforderlich ist (Margin-Closeout oder manuell), aber keine Gebotsliquidität vorliegt.
public string Instrument { get; set; }
value = pricing.Instrument
pricing.Instrument = value
Das Instrument des Preises.
public bool Tradeable { get; set; }
value = pricing.Tradeable
pricing.Tradeable = value
Flag zeigt an, ob der Preis handelbar ist oder nicht.