(symbol: string, params: Dict = {})
| 5133 | } |
| 5134 | |
| 5135 | async deliveryOpenInterest(symbol: string, params: Dict = {}) { |
| 5136 | params.symbol = symbol; |
| 5137 | const res = await this.publicDeliveryRequest('v1/openInterest', params); |
| 5138 | return res; |
| 5139 | } |
| 5140 | |
| 5141 | /** |
| 5142 | * @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/rest-api/Kline-Candlestick-Data |
nothing calls this directly
no test coverage detected