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

Method remove_comma_from_value

python/ccxt/bit2c.py:795–800  ·  view source on GitHub ↗
(self, str)

Source from the content-addressed store, hash-verified

793 return self.parse_trades(response, market, since, limit)
794
795 def remove_comma_from_value(self, str):
796 newString = ''
797 strParts = str.split(',')
798 for i in range(0, len(strParts)):
799 newString += strParts[i]
800 return newString
801
802 def parse_trade(self, trade: dict, market: Market = None) -> Trade:
803 #

Callers 1

parse_tradeMethod · 0.95

Calls 2

splitMethod · 0.80
rangeFunction · 0.50

Tested by

no test coverage detected