* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Order-Book * @param symbol symbol if the market * @param params extra parameters to be sent in the request * @returns
(symbol: string, params: Dict = {})
| 4758 | * @returns |
| 4759 | */ |
| 4760 | async futuresDepth(symbol: string, params: Dict = {}): Promise<OrderBook> { |
| 4761 | params.symbol = symbol; |
| 4762 | const res = await this.publicFuturesRequest('v1/depth', params); |
| 4763 | return this.parseOrderBook(res, symbol); |
| 4764 | } |
| 4765 | |
| 4766 | /** |
| 4767 | * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Order-Book-Ticker |
no test coverage detected