* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Mark-Price
(symbol?: string, params: Dict = {})
| 4552 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Mark-Price |
| 4553 | */ |
| 4554 | async futuresMarkPrice(symbol?: string, params: Dict = {}): Promise<PremiumIndex | PremiumIndex[]> { |
| 4555 | if (symbol) params.symbol = symbol; |
| 4556 | return await this.publicFuturesRequest('v1/premiumIndex', params); |
| 4557 | } |
| 4558 | |
| 4559 | /** |
| 4560 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Recent-Trades-List |
nothing calls this directly
no test coverage detected