-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontracts.R
76 lines (58 loc) · 1.97 KB
/
contracts.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
contracts_by_ISIN <-
function(ISIN, exchange,
port = 7496, clientId = 1,
verbose = FALSE,
max.wait = 30,...) {
if (!requireNamespace("rib")) {
warning("package ", sQuote("rib"), " is not available")
return(invisible(NULL))
}
mL <- max(length(ISIN), length(exchange))
ISIN <- rep(ISIN, mL/length(ISIN))
exchange <- rep(exchange, mL/length(exchange))
wrap <- IButils:::.wrap$new(storeMessages = TRUE,
showMessages = verbose)
ic <- IBClient$new()
ic$connect(port = port, clientId = clientId)
on.exit({
ic$disconnect()
})
ic$checkMsg(wrap)
for (i in seq_along(ISIN)) {
contr <- rib::Contract
contr$secIdType <- "ISIN"
contr$secId <- ISIN[i]
contr$exchange <- exchange[i]
ic$reqContractDetails(i, contr)
}
time <- Sys.time()
done <- FALSE
while (!done) {
count <- ic$checkMsg(wrap)
if (count == 0L)
done <- TRUE
if (as.numeric(Sys.time() - time, units = "secs") > max.wait) {
warning("timeout reached")
break
}
}
ic$disconnect()
ans <- data.frame(localSymbol = character(length(ISIN)),
secType = character(length(ISIN)),
exchange = character(length(ISIN)),
currency = character(length(ISIN)))
row.names(ans) <- paste(ISIN, exchange, sep = " / ")
## fetch received contract data
contracts <- wrap$Data$contracts
## match received data to requested data
rec <- sapply(contracts, `[[`, "secIdList")
i <- match(rec, ISIN)
C <- lapply(contracts, `[[`, 1)
for (i1 in i)
for (col in colnames(ans) )
ans[[col]][i] <- sapply(C, `[[`, col)
attr(ans, "contractDetails") <- vector("list", length(ISIN))
names(attr(ans, "contractDetails")) <- "ISIN"
attr(ans, "contractDetails")[i] <- contracts
ans
}