1

http://interactivebrokers.github.io/tws-api/可能是一个有用的链接。 这张图片来自Interacitve Brokers的java API指南,我想要的数字是交易日志中的价格和佣金。

4

1 回答 1

1
from ib.opt import Connection, message
from ib.ext.Contract import Contract
from ib.ext.Order import Order
from ib.ext.CommissionReport import CommissionReport
from ib.ext.TickType import TickType as tt

制作函数来处理您感兴趣的每种类型的回调。

def error_handler(msg):
    print (msg)

def execDetails(msg):
    print('ID',msg.execution.m_execId,'PRICE',msg.execution.m_price)

def commReport(msg):
    print('ID',msg.commissionReport.m_execId,'COM',msg.commissionReport.m_commission)

tws = Connection.create(port = 4001, clientId=123)
tws.register(execDetails, message.execDetails)
tws.register(commReport, message.commissionReport)
tws.register(error_handler, 'Error')
tws.connect()

你应该等待connect()完成,我通常只使用 nextOrderId 回调在准备好时通知我,但在 python 中你可以 sleep(2) 或者在这种情况下我正在使用笔记本,所以我稍后再运行下一个单元格。

fx = Contract()
fx.m_secType = "CASH" 
fx.m_symbol = "USD"
fx.m_currency = "CAD"
fx.m_exchange = "IDEALPRO"
#tws.reqMktData(1,fx,"",False)

ord = Order()
ord.m_orderType = 'MKT'
ord.m_totalQuantity = 100000
ord.m_action = 'SELL'
tws.placeOrder(123,fx,ord) #increment this every order

这打印

ID 0001f4e8.57427bd9.01.01 PRICE 1.31565
ID 0001f4e8.57427bd9.01.01 COM 2.6313`

不要忘记tws.disconnect()某个时候

于 2016-05-23T13:00:02.583 回答