-
Urgent request for an R library compatible with Refinitiv Workspace
We are currently using the R package eikonapir to access the Eikon Data API. However, this API is not compatible with Refinitiv Workspace, which is now our main platform. Due to an upcoming migration deadline, we urgently need an R-compatible alternative that offers the same data access and functionalities, but works with…
-
R code Authentication for RDP API
I have a cleint hwo is using R code to login using his machine ID. When I use Postman and Python, I am able to use the same password success fully to authenticate but when the cleint uses it on his side it gves him Invalid Username or Password error. I did get similar error initially after setting the cleint password but…
-
Getting error trying to install DatastreamDSWS2R in R Studio
R studio - DatastreamDSWS2R error 2.pngR studio - DatastreamDSWS2R error.pngI cannot seem to install DatastreamDSWS2R package into R Studio, and when trying to run below code, i get error. pls assist. First attachment is what i see when trying to install dsws package. Second attachement is when trying to run a sample code,…
-
CBOEVIX Data not available for the Refinitiv Eikong API on R, I already have the license required...
... to see it, but the data is not dowloading For almost two years I have been using the R API to download some data for an Option Strategy, which includes VIX and S&P values. Since May, the VIX Data became an extra service, which I am paying for. Nevertheless, the VIX Data works only on Excel, my code finds no data for it…
-
R studio compatibility
Hi team, Is R-Studio compatible with Eikon API? any documentation? Thanks for the help, Daniel
-
How can I get the data of Order Book using Eikon Data Api in R Studio?
* I already installed library("eikonapir") * I already have the key (set_app_id) * I want the information contained in the image below:
-
How to fetch historical "Market Open Interest" using eikon R API?
Hi, I need to know how one can fetch the Market Open Interest using eikon R API. I have no idea about its fields name. I know how to collect Open Interest using eikon R API. Below is an example get_data(list("LCOc1"),fields = list('TR.OPENINTEREST.Date', 'TR.OPENINTEREST', '2000-01-01', '2020-05-25')) but I want to know…
-
How to connect R with reuters eikon?
How to connect R with reuters eikon?
-
Missing Environmental Data for Textile & Apparel group
Hi, I'm trying to retrieve all environmental data (with all 121 criteria) for several years, for instance, 2009. However, I get a lot of missing values ( more than a half). For instance, the code for emission data for 2009 I'm using (in R) is as follows: Emission09TEX <- get_data(instruments,…
-
How to get the values for Turnover for a specific FY and CY using Eikon API?
Hi, I'm trying to get the values of Turnover for a list of industries for a specific calendar year and fiscal year. However, I obtained the values which are absolutely identical for CY and FY. Is it the right way I used to get the values or something is missing? x <- get_data(instruments,list("TR.TURNOVER(Frq = FY, SDate =…
-
How to get the annual turnover for Fiscal year?
Hi, I'm trying to get the annual turnover for the Fiscal year for a list of companies. As I came to conclusion, the following code does not work for that purpose. get_data(instruments,"TR.TURNOVER(SDate=FY2019, EDate=FY2019, Frq=FY, Curn=USD)"); I got the list of Fiscal year end dates by using:…
-
I have a list of excels in R with eikon formulas. I need to open and refresh them with Rstudio in...
I have a list of excels in R with eikon formulas. I need to open and refresh them with Rstudio instead of open each of them. How can I do it? thanks
-
Error in curl::curl_fetch_memory(url, handle = handle) :
While extracting TRTH data with REST API in R but got stuck in the last step to download completed extraction. I have followed the API reference tree to Extraction - ExtractedFile - GetDefaultStream. However, R gives me error message that: Error in curl::curl_fetch_memory(url, handle = handle) : Failed writing received…
-
How to use Data Type "WC07015 - Inactive date (Security)" output
Hello, When I run a query for datatype WC07015 in a snapshot request (in R) the value it gives me is a character value of numbers that I cannot translate into a date. This data type is supposed to be the day that a company was delisted. How do I convert this value into a date? sf <- dsws$snapshotRequest(instrument =…
-
How to get time series of forecast data in R API
I am trying to get time series data for a series that contains actual and forecast data. However I am getting an error when I use the following code: inflation1 <- dsws$timeSeriesRequest(instrument = "AUOCFCOR", datatype = "", startDate = "-2Y" endDate = "-0D", frequency = "Y") The error messages that I get in the console…