0

我可以使用 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)
4

1 回答 1

0

您没有写正确的到期日期,您应该尝试:

opt <- twsOption("AAPL", expiry="20180315", strike="170", right="C")

格式是yyyymmdd.

于 2018-02-19T17:26:29.590 回答