Я пытаюсь распечатать детали выполнения, когда заказ выполнен. Я получил это в коде, используя метод execDetails, однако он печатает детали выполнения только тогда, когда бот размещает сделку. Я пытаюсь заставить его распечатать детали исполнения, когда я вручную размещаю сделку на платформе TWS. Возможно ли это достичь?
Это мой код, который работает только тогда, когда бот размещает сделку:
from ibapi.client import EClient
from ibapi.wrapper import EWrapper
from ibapi.contract import Contract
from ibapi.order import *
import threading
import time
class IBapi(EWrapper, EClient):
def __init__(self):
EClient.__init__(self, self)
def nextValidId(self, orderId: int):
super().nextValidId(orderId)
self.nextorderId = orderId
print('The next valid order id is: ', self.nextorderId)
def execDetails(self, reqId, contract, execution):
print('Order Executed: ', reqId, contract.symbol, contract.secType,
contract.currency, execution.execId, execution.orderId,
execution.shares, execution.lastLiquidity)
def run_loop():
app.run()
# Function to create FX Order contract
def spy_order():
contract = Contract()
contract.symbol = "SPY"
contract.secType = "STK"
contract.currency = "USD"
contract.exchange = "SMART"
contract.primaryExchange = "ARCA"
return contract
app = IBapi()
app.connect('127.0.0.1', 7497, 123)
app.nextorderId = None
# Start the socket in a thread
api_thread = threading.Thread(target=run_loop, daemon=True)
api_thread.start()
# Check if the API is connected via orderid
while True:
if isinstance(app.nextorderId, int):
print('connected')
print()
break
else:
print('waiting for connection')
time.sleep(1)
# Create order object
order = Order()
order.action = 'BUY'
order.totalQuantity = 1
order.orderType = 'MKT'
# Place order
app.placeOrder(app.nextorderId, spy_order(), order)
app.nextorderId += 1






Хорошо, я понял это. Чтобы заставить его отвечать вам с ручными заказами, вам нужно перейти к настройкам API TWS и установить для основного идентификатора клиента API значение 0, а затем сопоставить его с идентификатором клиента подключения:
app.connect('127.0.0.1', 7497, 0)
примечание: ID 0 — для получения от заказов TWS, установка основного идентификатора — для получения заказов от всех клиентов, включая другие клиенты API. Interactivebrokers.github.io/tws-api/…