* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Order-Book-Ticker
(symbol?: string, params: Dict = {})
| 4767 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Order-Book-Ticker |
| 4768 | */ |
| 4769 | async futuresQuote(symbol?: string, params: Dict = {}) { |
| 4770 | if (symbol) params.symbol = symbol; |
| 4771 | const data = await this.publicFuturesRequest('v1/ticker/bookTicker', params); |
| 4772 | return this.bookPriceData(data); |
| 4773 | } |
| 4774 | |
| 4775 | /** |
| 4776 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Order-Book-Ticker |
no test coverage detected