代码:
print(bibox.fetch_ticker('4LTC/USDT'))
结果:
{'symbol': '4LTC/USDT', 'timestamp': 1583895957888, 'datetime': '2020-03-11T03:05:57.888Z', 'high': 51.4, 'low': 48.988, 'bid': 49.845, 'bidVolume': None, 'ask': 49.92, 'askVolume': None, 'vwap': None, 'open': None, 'close': 49.906, 'last': 49.906, 'previousClose': None, 'change': None, 'percentage': 0.1, 'average': None, 'baseVolume': 3033233.0, 'quoteVolume': None, 'info': {'last': '49.9060', 'buy': '49.8450', 'sell': '49.9200', 'base_last_cny': '347.17700000', 'last_cny': '347.17', 'buy_amount': '321', 'percent': '+0.10%', 'pair': '4LTC_USDT', 'high': '51.4000', 'vol': '3033233', 'last_usd': '49.90', 'low': '48.9880', 'sell_amount': '630', 'timestamp': 1583895957888}}
结果说明:
‘symbol’: ‘4LTC/USDT’,//交易币种
‘timestamp’: 1583895957888,
‘datetime’: ‘2020-03-11T03:05:57.888Z’,
‘high’: 51.4,//24h最高价
‘low’: 48.988,//24h最低价
‘bid’: 49.845,
‘bidVolume’: None,
‘ask’: 49.92,
‘askVolume’: None,
‘vwap’: None,
‘open’: None,
‘close’: 49.906,
‘last’: 49.906,//24h最新价
‘previousClose’: None,
‘change’: None,
‘percentage’: 0.1,
‘average’: None,
‘baseVolume’: 3033233.0,
‘quoteVolume’: None,
‘info’: {
‘last’: ‘49.9060’,
‘buy’: ‘49.8450’,
‘sell’: ‘49.9200’,
‘base_last_cny’: ‘347.17700000’,
‘last_cny’: ‘347.17’,
‘buy_amount’: ‘321’,
‘percent’: ‘+0.10%’,//24h涨跌幅
‘pair’: ‘4LTC_USDT’, //交易币种
‘high’: ‘51.4000’,
‘vol’: ‘3033233’,
‘last_usd’: ‘49.90’,
‘low’: ‘48.9880’,
‘sell_amount’: ‘630’,
‘timestamp’: 1583895957888
本文同步发布到本人的个人博客:http://www.6688.one/446.html