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

Method deliveryMarkPriceKlines

src/node-binance-api.ts:5168–5172  ·  view source on GitHub ↗
(symbol: string, interval: Interval = "30m", params: Dict = {})

Source from the content-addressed store, hash-verified

5166 }
5167
5168 async deliveryMarkPriceKlines(symbol: string, interval: Interval = "30m", params: Dict = {}) {
5169 params.symbol = symbol;
5170 params.interval = interval;
5171 return await this.publicDeliveryRequest('v1/markPriceKlines', params);
5172 }
5173
5174 async deliveryMarkPrice(symbol?: string, params: Dict = {}) {
5175 if (symbol) params.symbol = symbol;

Callers

nothing calls this directly

Calls 1

publicDeliveryRequestMethod · 0.95

Tested by

no test coverage detected