如果可能的话,有人知道如何在CCXT库中获取用于python的传输时间吗?我在文档中找不到它,还有另外一个库吗?
发布于 2022-01-20 06:02:14
import ccxt
import sys
import json
from pprint import pprint
print('python', sys.version)
print('CCXT Version:', ccxt.__version__)
exchange = ccxt.binance({
'apiKey': '...',
'secret': '...',
})
pprint(exchange.fetch_transfers(params={
'fromAccount': 'spot',
'toAccount': 'future'
}))这是方法头
def fetchTransfers(code=None, since=None, limit=None, params={})https://stackoverflow.com/questions/70762058
复制相似问题