InstrumentMarketOrder
An order that is orderType market using either a cash amount or quantity of shares.
input InstrumentMarketOrder {
amount: DecimalString @deprecated
cashAmount: Int!
quantity: Float!
type: InstrumentMarketOrderType
}
Fields
InstrumentMarketOrder.amount
● DecimalString
deprecated scalar
DEPRECATED: Field has been split into `quantity` and `cashAmount`.The dollar amount or number of shares for the order, depending on the type.
InstrumentMarketOrder.cashAmount
● Int!
non-null scalar
The currency amount for the order, in the lowest denomination for the currency (i.e. cents for USD).
InstrumentMarketOrder.quantity
● Float!
non-null scalar
The estimated number of shares for which this order will be placed.
InstrumentMarketOrder.type
● InstrumentMarketOrderType
enum
Whether this order is for an amount of currency or quantity of shares. Defaults to notional (currency).