Enums
🧾 Terminology
📌 Assets
Base Asset The asset that represents the quantity in a trading pair. Example: In
BTC/USDT
, BTC is the base asset.Quote Asset The asset that represents the price in a trading pair. Example: In
BTC/USDT
, USDT is the quote asset.
📦 Order Status
NEW
: Order has been created but not yet filled.PARTIALLY_FILLED
: Part of the order has been filled.FILLED
: The order has been completely filled.CANCELED
: The order has been canceled by the user.PENDING_CANCEL
: The order is in the process of being canceled.REJECTED
: The order was not accepted due to validation or balance issues.
📝 Order Types
LIMIT
: An order to buy/sell at a specific price or better.MARKET
: An order to buy/sell immediately at the best available price.
🔁 Order Side
BUY
:Purchase the base asset using the quote asset.SELL:
: Sell the base asset to receive the quote asset.
📊 Kline/Candlestick Intervals
The following time intervals are supported for Kline/Candlestick data:
1min
— 1 Minute5min
— 5 Minutes15min
— 15 Minutes30min
— 30 Minutes60min
or1h
— 1 Hour4h
— 4 Hours1day
— 1 Day1week
— 1 Week1month
— 1 Month
Last updated