MCPcopy Create free account
hub / github.com/ccxt/ccxt / parse_ws_ohlcvs

Method parse_ws_ohlcvs

python/ccxt/base/exchange.py:7515–7519  ·  view source on GitHub ↗
(self, ohlcvs: List[object], market: Any = None, timeframe: str = '1m', since: Int = None, limit: Int = None)

Source from the content-addressed store, hash-verified

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 """

Callers 1

handle_ohlcvMethod · 0.80

Calls 3

parse_ws_ohlcvMethod · 0.95
rangeFunction · 0.50
appendMethod · 0.45

Tested by

no test coverage detected