I am trying to get an option chain using IBrokers. In the example below, it is only half of the chain, the Put side("P") for Ford("F"). It runs nearly instantly until the last line, which makes 20 requests and take 240 seconds to return. What am I doing wrong here?
library(IBrokers)
tws <- twsConnect()
myCurOpt<-reqContractDetails(tws,twsOption(local="",expiry="20111216",right="P",symbol="F"))
nRowCount=0
myOptList=0
while (nRowCount < length(myCurOpt)) {
nRowCount<-nRowCount+1
myOptList[nRowCount]<-myCurOpt[[nRowCount]][[2]][[10]]
}
why<-as.list(myOptList)
system.time(MYDATA<-reqMktData(tws, lapply(c(why),twsOPT), snapshot=TRUE))
2 -1 2104 Market data farm connection is OK:usopt
user system elapsed
1.575 0.350 240.102