* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Kline-Candlestick-Data
(symbol: string, interval: Interval = "30m", params: Dict = {})
| 4545 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Kline-Candlestick-Data |
| 4546 | */ |
| 4547 | async futuresCandlesticks(symbol: string, interval: Interval = "30m", params: Dict = {}): Promise<Candle[]> { |
| 4548 | return await this.futuresCandles(symbol, interval, params); // make name consistent with spot |
| 4549 | } |
| 4550 | |
| 4551 | /** |
| 4552 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Mark-Price |
nothing calls this directly
no test coverage detected