我可以使用 R(使用IBrokers API )在 Interactive Brokers 上进行股票交易,但是对于期权交易我不能这样做。
我在这里发布我的示例代码,也许社区中的某个人可以提供帮助。
library('IBrokers')
tws <- twsConnect(port=7497)
orderid = reqIds( tws, numIds=1)
neworder = twsOrder( orderid, action='BUY', totalQuantity='4', orderType='LMT', lmtPrice='.1')
opt <- twsOption("AAPL",expiry="281707", strike="10.0", right="C")
placeOrder( tws, opt, neworder )
twsDisconnect(tws)