/** * Orderbook Types */ /** * Quotation mode for orderbook subscription. * * - "BASE": Prices are displayed in the quote currency per unit of the base currency. * For example, for the BTC/USD market, prices are shown as USD per BTC. * - "QUOTE": Prices are displayed in the base currency per unit of the quote currency. * For example, for the BTC/USD market, prices are shown as BTC per USD. * * Choose the mode based on how you want to interpret price levels in the orderbook. */ export type OrderbookQuotationMode = "BASE" | "QUOTE";