MCPcopy Create free account
hub / github.com/ccxt/node-binance-api / deliveryDepth

Method deliveryDepth

src/node-binance-api.ts:5275–5279  ·  view source on GitHub ↗
(symbol: string, params: Dict = {})

Source from the content-addressed store, hash-verified

5273 }
5274
5275 async deliveryDepth(symbol: string, params: Dict = {}): Promise<OrderBook> {
5276 params.symbol = symbol;
5277 const res = await this.publicDeliveryRequest('v1/depth', params);
5278 return this.parseOrderBook(res, symbol);
5279 }
5280
5281 async deliveryQuote(symbol?: string, params: Dict = {}) {
5282 if (symbol) params.symbol = symbol;

Callers 2

static-tests.mjsFile · 0.80

Calls 2

publicDeliveryRequestMethod · 0.95
parseOrderBookMethod · 0.95

Tested by

no test coverage detected