Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.1 KB

File metadata and controls

28 lines (21 loc) · 1.1 KB

CurrencyPair

Spot currency pair

Properties

Name Type Description Notes
id String Currency pair [optional]
base String Base currency [optional]
quote String Quote currency [optional]
fee String Trading fee [optional]
minBaseAmount String Minimum amount of base currency to trade, `null` means no limit [optional]
minQuoteAmount String Minimum amount of quote currency to trade, `null` means no limit [optional]
amountPrecision Integer Amount scale [optional]
precision Integer Price scale [optional]
tradeStatus TradeStatusEnum How currency pair can be traded - untradable: cannot be bought or sold - buyable: can be bought - sellable: can be sold - tradable: can be bought or sold [optional]

Enum: TradeStatusEnum

Name Value
UNTRADABLE "untradable"
BUYABLE "buyable"
SELLABLE "sellable"
TRADABLE "tradable"