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 Minute

  • 5min β€” 5 Minutes

  • 15min β€” 15 Minutes

  • 30min β€” 30 Minutes

  • 60min or 1h β€” 1 Hour

  • 4h β€” 4 Hours

  • 1day β€” 1 Day

  • 1week β€” 1 Week

  • 1month β€” 1 Month

Last updated