(self, ohlcvs: List[object], market: Any = None, timeframe: str = '1m', since: Int = None, limit: Int = None)
| 7513 | return market |
| 7514 | |
| 7515 | def parse_ws_ohlcvs(self, ohlcvs: List[object], market: Any = None, timeframe: str = '1m', since: Int = None, limit: Int = None): |
| 7516 | results = [] |
| 7517 | for i in range(0, len(ohlcvs)): |
| 7518 | results.append(self.parse_ws_ohlcv(ohlcvs[i], market)) |
| 7519 | return results |
| 7520 | |
| 7521 | def fetch_transactions(self, code: Str = None, since: Int = None, limit: Int = None, params={}): |
| 7522 | """ |
no test coverage detected