从PythonBinance获取订单参数

2024-03-28 04:11:25 发布

您现在位置:Python中文网/ 问答频道 /正文

我试图从Python Binance API中获取订单的一些参数。 在本例中,我只想获取订单的“状态”,并将其保存到变量中

我用这个来得到我最后的订单:

orders = client.get_all_orders(symbol=symbol, limit=1)

我得到了这个结果:

[{'clientOrderId': 'HzHxjogJf5rXrzD2uFnTyMn',
'cummulativeQuoteQty': '12.06757100',
'executedQty': '0.00030000',
  'icebergQty': '0.00000000',
  'isWorking': True,
  'orderId': 88978639302,
  'orderListId': -1,
  'origQty': '0.00030000',
  'origQuoteOrderQty': '0.00000000',
  'price': '31558.57000000',
  'side': 'BUY',
  'status': 'FILLED',
  'stopPrice': '31592.06000000',
  'symbol': 'BTCUSDT',
  'time': 1612653434918,
  'timeInForce': 'GTC',
  'type': 'STOP_LOSS_LIMIT',
  'updateTime': 1612109872451}]

试图仅打印状态:

pprint.pprint(orders['status'])

但它返回一个错误:

TypeError: list indices must be integers or slices, not str

Tags: 订单clientapi参数get状态statusbinance
1条回答
网友
1楼 · 发布于 2024-03-28 04:11:25

试试这个: pprint.pprint(orders[0]['status'])

order变量是包含字典的列表。要访问列表的第一个元素,请使用[0]。现在您只能从字典中获得值。在本例中,您可以使用[dictionary_key]执行此操作['status']。结合这一点,您可以打印状态

如果不确定变量的类型,只需使用print(type(variable_name))

相关问题 更多 >