Skip to content

Files

Latest commit

author
gateio
Feb 24, 2025
f29efc6 · Feb 24, 2025

History

History
34 lines (25 loc) · 2.02 KB

CurrencyPair.md

File metadata and controls

34 lines (25 loc) · 2.02 KB

CurrencyPair

Properties

Name Type Description Notes
id string Currency pair [optional] [default to undefined]
base string Base currency [optional] [default to undefined]
baseName string Transaction currency name [optional] [default to undefined]
quote string Quote currency [optional] [default to undefined]
quoteName string Name of the denominated currency [optional] [default to undefined]
fee string Trading fee [optional] [default to undefined]
minBaseAmount string Minimum amount of base currency to trade, `null` means no limit [optional] [default to undefined]
minQuoteAmount string Minimum amount of quote currency to trade, `null` means no limit [optional] [default to undefined]
maxBaseAmount string Maximum amount of base currency to trade, `null` means no limit [optional] [default to undefined]
maxQuoteAmount string Maximum amount of quote currency to trade, `null` means no limit [optional] [default to undefined]
amountPrecision number Amount scale [optional] [default to undefined]
precision number Price scale [optional] [default to undefined]
tradeStatus string 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] [default to undefined]
sellStart number Sell start unix timestamp in seconds [optional] [default to undefined]
buyStart number Buy start unix timestamp in seconds [optional] [default to undefined]
type string Trading pair type, normal: normal, premarket: pre-market [optional] [default to undefined]

Enum: CurrencyPair.TradeStatus

  • Untradable (value: 'untradable')

  • Buyable (value: 'buyable')

  • Sellable (value: 'sellable')

  • Tradable (value: 'tradable')