Binance API输入订单给了我min_notional
我目前正在使用Nuget的开源二元API,称为 Binance.net来自Jkrof https://github.com/jkorf/binance.net 我已经有了我的API和键到位,但是当我尝试进入…
binance python api通过ID
我需要关闭以前打开的订单: order_id = "test" symbol = "BTCUSDT" direction = "long" quantity = "0.1" order = client.futures_create_order(newC…
多个Binance API键是否可以提高限制率?
一个Binance API密钥有限的1200请求每分钟,如果我创建多个API键以增加限制率?我可以为我的个人binance帐户创建30个API密钥。因此,我可以将1200个限…
Binance Spot测试网络。试图达到testnet帐户余额时错误
我正在尝试测试点测试网络上的一个机器人代码= -2015):无效的API-KEY,IP或操作权限。我尝试找到解决方案,但除了在 ” noreferrer 具有以下值的API…
binance api get_aggregate_trades可选参数的组合inavild
我想从一定的时间戳开始索取汇总的贸易数据, client.get_aggregate_trades(symbol = 'EURBUSD', startTime = 165605516493) 但我只会遇到错误: 文件…
比较两个命令列表中的字符串:python-binance
Python -Binance-找到具有USDT和BUSD市场的货币。 我想使我的代码比较USDT和BUSD市场书籍,并且只有两个市场中的回报货币。 search_busd/search_usdt…
可以让Binance threadwebsocketmanager显示价格流
我目前正在尝试从binance流式传输实时价格,但是在运行代码后,即使程序正在运行,我也会看到一个空白屏幕。 以下是代码: import os from binance.cl…
精度超过了该资产定义的最大定义。 binance?
我的代码 if side == "LONG" and client.futures_get_open_orders(symbol=symbol) == []: print(data) pos = "BUY" q = tbal / price q = round(q, 1)…
Binance Order的打印响应
如何从下面的订单中打印响应? order = client.order_limit_buy( symbol='ADABUSD', quantity=buy_quantity, price=price, newOrderRespType = 'ACK' …
Binance Websocket API卡在打开消息上
我有这个... import websocket SOCKET = "wss://stream.binance.com:9443/ws/ADABUSB@nav_kline_1m" def on_open(ws): print('opened connection') de…
可以从CCXT获取Binance Futures数据
我需要从Binance获取资金率历史数据,但是即使我输入: binance = ccxt.binance({'option': {'defaultType': 'future'}}) binance.fetch_markets() 如…
Binance Futures如何以市场价格关闭头寸(与“按“关闭位置”下方“按下“市场”相同)通过API
这个问题是关于Binance Futures API(不是现货交换,而是期货)。 目标:具有与关闭位置的“紧密位置”下的按钮“市场”与“市场”相同的行为。 注意…