* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/24hr-Ticker-Price-Change-Statistics
(symbol?: string, params: Dict = {})
| 4519 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/24hr-Ticker-Price-Change-Statistics |
| 4520 | */ |
| 4521 | async futuresDaily(symbol?: string, params: Dict = {}): Promise<DailyStats | DailyStats[]> { |
| 4522 | if (symbol) params.symbol = symbol; |
| 4523 | return await this.publicFuturesRequest('v1/ticker/24hr', params); |
| 4524 | } |
| 4525 | |
| 4526 | /** |
| 4527 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Open-Interest |
nothing calls this directly
no test coverage detected