(symbol: string, params: Dict = {})
| 5273 | } |
| 5274 | |
| 5275 | async deliveryDepth(symbol: string, params: Dict = {}): Promise<OrderBook> { |
| 5276 | params.symbol = symbol; |
| 5277 | const res = await this.publicDeliveryRequest('v1/depth', params); |
| 5278 | return this.parseOrderBook(res, symbol); |
| 5279 | } |
| 5280 | |
| 5281 | async deliveryQuote(symbol?: string, params: Dict = {}) { |
| 5282 | if (symbol) params.symbol = symbol; |
no test coverage detected