* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/rest-api/Kline-Candlestick-Data * @param symbol * @param interval * @param params * @returns
(symbol: string, interval: Interval = "30m", params: Dict = {})
| 5146 | * @returns |
| 5147 | */ |
| 5148 | async deliveryCandles(symbol: string, interval: Interval = "30m", params: Dict = {}): Promise<Candle[]> { |
| 5149 | params.symbol = symbol; |
| 5150 | params.interval = interval; |
| 5151 | const res = await this.publicDeliveryRequest('v1/klines', params); |
| 5152 | return this.parseCandles(res); |
| 5153 | } |
| 5154 | |
| 5155 | async deliveryContinuousKlines(pair: string, contractType = "CURRENT_QUARTER", interval: Interval = "30m", params: Dict = {}) { |
| 5156 | params.pair = pair; |
nothing calls this directly
no test coverage detected