(self, bidasks, priceKey: IndexType = 0, amountKey: IndexType = 1, countOrIdKey: IndexType = 2)
| 4995 | return result |
| 4996 | |
| 4997 | def parse_order_book_bids_asks(self, bidasks, priceKey: IndexType = 0, amountKey: IndexType = 1, countOrIdKey: IndexType = 2): |
| 4998 | bidasks = self.to_array(bidasks) |
| 4999 | result = [] |
| 5000 | for i in range(0, len(bidasks)): |
| 5001 | result.append(self.parse_order_book_bid_ask(bidasks[i], priceKey, amountKey, countOrIdKey)) |
| 5002 | return result |
| 5003 | |
| 5004 | def fetch_l2_order_book(self, symbol: str, limit: Int = None, params={}): |
| 5005 | orderbook = self.fetch_order_book(symbol, limit, params) |
no test coverage detected