* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Price-Ticker-v2 *
(symbol?: string, params: Dict = {})
| 4510 | * |
| 4511 | */ |
| 4512 | async futuresPrices(symbol?: string, params: Dict = {}): Promise<{ [key: string]: number }> { |
| 4513 | if (symbol) params.symbol = symbol; |
| 4514 | const data = await this.publicFuturesRequest('v2/ticker/price', params); |
| 4515 | return this.priceData(data); |
| 4516 | } |
| 4517 | |
| 4518 | /** |
| 4519 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/24hr-Ticker-Price-Change-Statistics |
no test coverage detected