Python-Ibpy返回有效的订单id



我的代码:

from ib.opt import Connection
from ib.ext.Contract import Contract
from ib.ext.Order import Order
from time import sleep

def get_valid_order_id(msg):    
global oid
oid = msg.orderId

def error_handler(msg):    
print ("Server Error:", msg)

def create_contract(symbol, sec_type, exch, prim_exch, curr):    
contract = Contract()
contract.m_symbol = symbol
contract.m_secType = sec_type
contract.m_exchange = exch
contract.m_primaryExch = prim_exch
contract.m_currency = curr
return contract

def create_order(action, quantity):
order = Order()
order.m_orderType = 'MKT'
order.m_totalQuantity = quantity
order.m_action = action
return order

oid = 0
cid = 100
port = 7498
conn = None
# connection
conn = Connection.create(port=port,clientId=cid)
conn.connect()
# register
conn.register(get_valid_order_id, 'NextValidId')
conn.register(error_handler, 'Error')
#order
contract = create_contract('TSLA','STK','SMART','SMART','USD')
order = create_order('buy', 1)
print(1)
conn.placeOrder(oid, contract, order)

第一个结果:(订单完成)

Server Version: 76
TWS Time at connection:20171101 02:07:03 CST
1Server Error:
<error id=-1, errorCode=2104, errorMsg=Market data farm connection is OK:usfuture>
Server Error: <error id=-1, errorCode=2104, errorMsg=Market data farm connection is OK:cashfarm>
Server Error: <error id=-1, errorCode=2104, errorMsg=Market data farm connection is OK:usfarm.us>
Server Error: <error id=-1, errorCode=2104, errorMsg=Market data farm connection is OK:usfarm>
Server Error: <error id=-1, errorCode=2106, errorMsg=HMDS data farm connection is OK:ushmds>

如果最后两个代码交换:

conn.placeOrder(oid, contract, order)
print(1)

第二个结果:(订单失败)

Server Version: 76
TWS Time at connection:20171101 02:11:20 CST
Server Error: 1<error id=-1, errorCode=2104, errorMsg=Market data farm connection is OK:usfuture>
Server Error: <error id=-1, errorCode=2104, errorMsg=Market data farm connection is OK:cashfarm>
Server Error: <error id=-1, errorCode=2104, errorMsg=Market data farm connection is OK:usfarm.us>
Server Error: <error id=-1, errorCode=2104, errorMsg=Market data farm connection is OK:usfarm>
Server Error: <error id=-1, errorCode=2106, errorMsg=HMDS data farm connection is OK:ushmds>
Server Error: <error id=0, errorCode=10149, errorMsg=Invalid order id: 0>

为什么这么有趣,以及如何正确地做到这一点?我只想获得一个有效的订单id来订购。我不是一个很好的程序员,我不知道听众是如何工作的。请尽可能简单地解释。非常感谢!

Ibpy:https://github.com/blampe/IbPy

答案很简单:在第一个conn.placeOrder()调用中,您使用了初始的oid=0值。你不能再使用它了——IB服务器在接受它时将它分配给了你的订单——所以当你试图在第二次尝试中重用它时,你遇到了一个错误。这与线路交换无关。

顺便说一句,您的第一次尝试成功是一个奇迹,因为oid=0并不总是有效的订单id。如果您想获得有效的订单id,您必须调用conn.reqIds()并在get_valid_order_id(msg)callback中获取答案。回调已经准备好了,但我没有看到reqIds调用。只有在答案到达并且oid具有正确值后,才能调用conn.placeOrder()

请注意:您的打印(1)调用在错误处理过程中正常执行。观察第3行中的字符"1":服务器错误:1…

根据您的结果,第二个或更晚订单的故障将通过断开连接然后重新连接来解决,请将以下代码添加到您现有的代码中。

# disconnect
conn.disconnect()  

每次您连接到IB以检索数据、下订单、获得自己的投资组合摘要e.t.c时,都需要运行while loop或其他类似的逻辑,并不断重新连接IB。

相关内容

  • 没有找到相关文章

最新更新