question

Upvotes
Accepted
39 3 3 7

Why DS does not return ISIN, NAME or static data?

datastream-apidsws-apiisinstatic-data
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Here are R codes (using RDatastream library):
> ds(user, stk,c("ISIN","ISINID"), date = "2019-01-10" )
StatusType    "Failure"                                          
StatusMessage "$$"ER", E100, INVALID CODE OR EXPRESSION ENTERED, U:IBM(ISINID)"

> ds(user, stk,c("P","VO"), date = "2019-01-10" )
StatusType    "Connected"              
StatusCode    "0"    


As seen, for same sec request: static data resulted failure, while time series worked!

1 Answer

· Write an Answer
Upvotes
Accepted
1.1k 3 3 3

@ddd6256d-b68c-4b00-876e-3821d24a1d6d

For static datatypes please use following request:

mydsws <- dsws$new()

myData <- mydsws$snapshotRequest(instrument = c("U:F","U:BA"),

datatype = c("NAME","ISIN","ISINID"),

requestDate = "2019-01-10")

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.