-
how to achieve USUM1P=ECI data
As our economic data's logic is blur, I cannot find out via which Ric i could get USUM1P=ECI 's latest published data. the Ric CF_Last not work. And eikon.get_data('USUM1P=ECI', ['ECI_ACT_DT', 'ECON_ACT', 'TR.IndicatorLastObservationDate']) not work either
-
how to achieve USUM1P=ECI data
how to achieve USUM1P=ECI series data, with prelim publish data and prelim publish date. our economic data's logic is blur, user want to test market reaction when economic data publishes. But either cannot get the Latest data (for example, the latest data is of 13th September with no data), or cannot get the last publish…
-
how to get Cross Economic Monitor data using Refinitiv Data API
is it possible to directly get the economic monitor data using APIs instead of manually download as excel?
-
Issues downloading Economic Indicator history and even fields
Hi, i've got an issue downloading historic data for economic indicators. my code is this: df = rd.get_history( universe=['aUSSPDIVY'], interval="monthly", start="1924-03-01" ) print(df) aUSSPDIVY VALUE Date 2022-05-31 1.567599 2022-06-30 1.641982 2022-07-31 1.64768 2022-08-31 1.560287 2022-09-30 1.69635 2022-10-31 1.767346…
-
Economic Monitor data using API
Hi is there any possible way that I can pull the data from the economic monitor using eikon API? Just all the data that is going to be released today. Old methods mentioned in the forum have stopped working.
-
How can I fix this error?
All, I have a problem I dont understand how to pull time series data using the refinitiv API. Does anyone have any idea how to do this? I am after macro data, instead of equity and FX prices, which seem to be in all the online examples. Many thanks Alex
-
Economic indicators from ek.get_data ek.get_timeseries
I am trying to pull historical economic indicator with ek.get_data. While I was able to obtain the time series with ek.get_timeseries, the date returned was in the period which the indicator was responsible for (ie If I'm looking at the CPI released on Oct 12 2023, the data reported was responsible for 2023-09-30. I saw a…
-
Data download structure with Eikon's Build Formula VS Datastream in Excel
I would like to ask the following question. I am downloading data for the last 10 years for all companies that have ESG data. Using Eikon's "Build Formula" function, I have been able to download the ESG data and part of the economic-financial data. This download shows me the data as shown in the first image. I would like…
-
Do you know a RIC for "Net International Investment Position % GDP"?
I need the economic data NIIP % GDP for several countries. Do you know the RIC for it or a possible alternative?
-
Is there an API for get data tables from Ric Search?
Is there an API, library or any function that can be used for get data tables, especially for economic indicators data from Ric Search Tool https://developers.refinitiv.com/en/tools-catalog/ric-search# in Python? If it is, can you give an example code?
-
How do I subscribe all Economic Indicators (=ECI) in /streaming/pricing/v1/ websocket?
Hi. I'm trying to make an Economic calendar using RKD Street Event - Economic Headlines and Streaming API from RDP. But here are some questions. 1. Is it possible to subscribe to the whole Economic Indicators? This means subscribing to every indicator with postfix "=ECI". 2. Is there a way to match the upcoming Economic…
-
Using Thomson Reuters SDK to get all Economic Releases for date range
Hi, How can I get all economic releases, all fields, for a specific date range, using the TR Desktop SDK? thx
-
Database Economic Variables
Hi, I am trying to build a database to then export into excel with economic variables of different countries. I have certain tickers in an excel file in column A, for simplicity, let's assume these: aTWWOGDPR, aCNWOGDPR, aJPWOGDPR. I would like to create a database where I extract the values in Column A, Country in column…
-
How to clean the output of data
Hello, I have the code below. import DatastreamPy as dsws import pandas as pd # set up connection def connection_DSWS(): DSWS_username = open("DSWSUsername.txt","r") DSWS_password = open("DSWSPassword.txt","r") ds = dsws.Datastream(username = str(DSWS_username.read()), password = str(DSWS_password.read()))…
-
Historical and scheduled dates and time of an economic event per Eikon API via Python
I would like to get historical and scheduled dates and time of an economic event per Eikon API via Python. Could you pls advise how to do it? I try like this: fields = ['TR.IndicatorName','TR.IndicatorType','TR.IndicatorSource' , 'GN_TXT16_3', #GMT Date 'VALUE_TS1', #Time 'CTBTR_1LL', #Period 'GN_TXT16_4', #Actual…