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

Method deliveryContinuousKlines

src/node-binance-api.ts:5155–5160  ·  view source on GitHub ↗
(pair: string, contractType = "CURRENT_QUARTER", interval: Interval = "30m", params: Dict = {})

Source from the content-addressed store, hash-verified

5153 }
5154
5155 async deliveryContinuousKlines(pair: string, contractType = "CURRENT_QUARTER", interval: Interval = "30m", params: Dict = {}) {
5156 params.pair = pair;
5157 params.interval = interval;
5158 params.contractType = contractType;
5159 return await this.publicDeliveryRequest('v1/continuousKlines', params);
5160 }
5161
5162 async deliveryIndexKlines(pair: string, interval: Interval = "30m", params: Dict = {}) {
5163 params.pair = pair;

Callers

nothing calls this directly

Calls 1

publicDeliveryRequestMethod · 0.95

Tested by

no test coverage detected