* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Open-Interest
(symbol: string, params: Dict = {})
| 4527 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Open-Interest |
| 4528 | */ |
| 4529 | async futuresOpenInterest(symbol: string, params: Dict = {}): Promise<OpenInterest> { |
| 4530 | params.symbol = symbol; |
| 4531 | return await this.publicFuturesRequest('v1/openInterest', params); |
| 4532 | } |
| 4533 | |
| 4534 | /** |
| 4535 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Kline-Candlestick-Data |
nothing calls this directly
no test coverage detected