QuoteDTO¶
stonepy.models.QuoteDTO.QuoteDTO
¶
Bases: ResponseModel
A quote for a specific order request.
quote_id
class-attribute
instance-attribute
¶
The unique ID of the Quote.
order_id
class-attribute
instance-attribute
¶
The ID of the Order that the Quote is related to.
market_id
class-attribute
instance-attribute
¶
The Market the Quote is related to.
bid_price
class-attribute
instance-attribute
¶
The Price of the original Order request for a Buy.
bid_adjust
class-attribute
instance-attribute
¶
The amount the bid price will be adjusted to become an order when the customer is buying (BidPrice + BidAdjust = BuyPrice) .
offer_price
class-attribute
instance-attribute
¶
The Price of the original Order request for a Sell.
offer_adjust
class-attribute
instance-attribute
¶
The amount the offer price will be adjusted to become an order when the customer is selling (OfferPrice + OfferAdjust = OfferPrice) .
quantity
class-attribute
instance-attribute
¶
The Quantity is the number of units for the trade i.e CFD Quantity = Number of CFDs to Buy or Sell , FX Quantity = amount in base currency.
currency_id
class-attribute
instance-attribute
¶
The system internal ID for the ISO Currency. An API call will be available in the near future to look up the equivalent ISO Code.
status_id
class-attribute
instance-attribute
¶
The Status ID of the Quote. An API call will be available in the near future to look up the Status values. The table of lookup codes can be found at Lookup Values .
type_id
class-attribute
instance-attribute
¶
The quote type ID. The table of lookup codes can be found at Lookup Values .
request_date_time_utc
class-attribute
instance-attribute
¶
The timestamp the quote was requested. Always expressed in UTC.
approval_date_time_utc
class-attribute
instance-attribute
¶
The timestamp the quote was approved. Always expressed in UTC.
breath_time_secs
class-attribute
instance-attribute
¶
Amount of time in seconds the quote is valid for.
is_oversize
class-attribute
instance-attribute
¶
Is the quote oversize.
reason_id
class-attribute
instance-attribute
¶
The reason for generating the quote.
trading_account_id
class-attribute
instance-attribute
¶
The trading account identifier that generated the quote.