我可以使用R(使用 IBrokers API )在Interactive Brokers上进行股票交易,但我不能为期权交易< / em>的。
我在这里发布我的示例代码,也许社区中的某些人可以提供帮助。
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)
答案 0 :(得分:0)
你还没有写好正确的截止日期,你应该尝试:
opt <- twsOption("AAPL", expiry="20180315", strike="170", right="C")
格式为yyyymmdd
。