彭博社(Bloomberg)基金价格设定货币

时间:2018-09-24 07:59:09

标签: r rblpapi

我收到错误消息

  

bdh_Impl(con,证券,字段,start.date,end.date,options中的错误:子元素'(null)'不存在。

它仅在我尝试设置options = c("curr"="SEK")时出现。如果我删除该行,它将正确下载数据

> startdate <- as.Date("2018-01-01")
> enddate <- as.Date("2018-03-21")
> fund <- bdh("/isin/FI0008813258",
+     "tot_return_index_gross_dvds",
+     startdate,
+     enddate 
+     , options = c("curr"="SEK")
+     )

1 个答案:

答案 0 :(得分:1)

根据我在网上找到的信息,您必须完整说明货币:

startdate <- as.Date("2018-01-01")
enddate <- as.Date("2018-03-21")
fund <- bdh("/isin/FI0008813258",
          "tot_return_index_gross_dvds",
          startdate,
          enddate 
          , options = c("currency"="SEK")
          )