是否有可能使用python转换加密货币?我在看create_order函数,但它似乎只允许现货交易。
发布于 2022-01-27 11:46:54
有很多方法,你可以使用现货和期货。查看文档:https://python-binance.readthedocs.io/en/latest/binance.html#
例如:
安装python-binance之后
from binance.client import Client
api_key='api_key'
api_secret='secret_key'
client = Client(api_key, api_secret)
client.futures_create_order()https://stackoverflow.com/questions/69245971
复制相似问题