-
Sectoral FDI data for BRICS
Can we get the historical Data on FDI for different sectors in BRICS countries?
-
rd.get_history and rd.get_data comparison
Greetings, I am in the process of developing an algorithm designed to extract specific dates and associated closing prices related to delistings, bankruptcies, or private transitions of publicly traded entities. Currently, I am encountering difficulties with the functionalities of rd.get_history and rd.get_data. Below, I…
-
What Happened to Efficiency Ratio?
Hello everyone, Does anyone know if there have been any changes related to the Efficiency Ratio? I can no longer find it in the fundamentals of companies, and when I search for it in the search areas by manually entering the column, it only provides me with the most recent data available and not the annual data. The same…
-
Issue to consume streaming price on DesktopSession mode using Refinitiv Data under C#.Net
Dear Developer community i share with an issue i'am facing since last week. Indeed when opening a Desktop session it tooks a very long time that usual, to finally a state response 'Opened'. But every request to stream data return 0 data. at log level, i got these warning messages: 2024-03-01…
-
PropertyNames for 'filter'
Hi! I was following a previous recommendation to utilize the Search API for my project. The integration has been successful, but I've encountered an obstacle with configuring the filters. Specifically, I am having difficulty identifying the appropriate PropertyNames to use within the "filter" parameter, as these were not…
-
Error for TR.DivAdjustedGross.
Hello! I have trouble getting values for "TR.DivAdjustedGross": I receive an error: Error code -1 | Output parameter 'date' is unrecognized. This could possibly happen because of mismatch between top level function expression and its usage in output. Make sure that you used exactly 1:1 identical expressions. Requested…
-
[ Codebook - Excel] How to dynamically link ".xlsx" or ".csv" file generated in Codebook to Excel
Hello, I have an issue concerning the retrieval of data to an excel file. 1. I use the Refinitiv Date Library API in Python using Codebook. 2. I am trying to obtain data about numerous financial instruments (equity, stocks,...) concerning their performance indicator ("TR.TotalReturn") over a period of 5 years (until now)…
-
refinitiv.data not able to retrieve RDP access token (Error code 401)
Hello, Recently I received Refinitiv Workspace and am using it instead of the old Eikon application. I am using the eikon and refinitiv.data API via Python. The eikon API works without any issue, however when I try to retrieve data using refinitiv.data I receive the error code 401 with the following message: When opening a…
-
different stuff coming back from eikon.get_data() vs. refinitiv.data.get_data() ... why oh why?
I'd really like to move on from eikon as it is very temperamental ... (400, 500 errors randomly). But, first thing i want to move away from, getting contents from portfolios, any which way i try, i cannot get the CF_CURR or CURRENCY back from refinitiv.data when downloading my portfolios (or watchlists). All packages up to…
-
rd.get_history does not respect SDate and EDate with mixed timeseries and data fields
I noticed today that if a gethistory request (both in CodeBook and Pycharm) is made of which the requested fields are a mixture of get_data and historical pricing fields. The described dates are not respected for the timeseries fields. As can be observed from below the dates for the get_data part are respected but not for…
-
HistoricalPricing events return incorrect data table column types using beta 5 library.
Since beta 5 of the RDP library for .net the resulting DataTable of HistoricalPricing.Events requests has no valid column types set. This was working in previous version. In the beta 5 all column types are set to "System.Object". I reproduced this using the example 2.1.02-HistoricalPricing-Events using "Workspace"…
-
Volatility surface build failed
Hi everyone, I'm using the curves-and-surfaces endpoint to get some FX volatility surfaces. Most of the time it works fine but for some currencies pairs it fails (ex: EURXAG). Do you have a solution? Thank you for your help Regards
-
Is there a way to pass a proxy as a parameter in refinitiv.data library (Python)?
Hi, Similar to this question from 2 years ago, I want to connect to the refinitiv.data library via a proxy server. This is because I need to run rd.get_data requests from an internal private server with, let's just say, highly strict network configurations. Right now, running rd.get_data() the regular way will return an…
-
The access to field(s) denied: rd.getdata - TR.RDNExchangeCode
Hi, I want to get exchange code from rics. using rd library , which direct to /data/datagrid/beta1 import refinitiv.data as rd rd.open_session() rd.get_data(universe=["MSFT.O","IBM","GOOG.O","AAPL.O","SPY"], fields=["TR.RDNExchangeCode"]) rd.close_session() It return these errors. Please suggest if I need any permission to…
-
Fetch all news for a given day via data/news/ API
I need to fetch all the news headlines and stories for a given day via `data/news/v1` API. Since there's no such endpoint which can provide daily dump of news data, what I did was to first get all the headlines using `headlines?dateFrom=....&dateTo=...` endpoint (using `next` cursor) then iterate over the headlines to get…