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

Method deliveryDaily

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

Source from the content-addressed store, hash-verified

5127 }
5128
5129 async deliveryDaily(symbol?: string, params: Dict = {}) {
5130 if (symbol) params.symbol = symbol;
5131 const data = await this.publicDeliveryRequest('v1/ticker/24hr', params);
5132 return symbol ? data : data.reduce((out, i) => ((out[i.symbol] = i), out), {});
5133 }
5134
5135 async deliveryOpenInterest(symbol: string, params: Dict = {}) {
5136 params.symbol = symbol;

Callers

nothing calls this directly

Calls 1

publicDeliveryRequestMethod · 0.95

Tested by

no test coverage detected