-
Bad request - please check your parameters
I try to call on POST endpoint on this API : api-worldcheck.refinitiv.com/v2/cases/screeningRequest Language : Javascript I have an error message : Bad request - please check your parameters I am reading this documentation to set my app :…
-
SDate parameter when collecting company events
My goal is to get company event data for a universe of firms. I am using Eikon API version 1.1.18. I am using the following python code to access the Earnings Call and Earnings Release Events data , err = ek.get_data([RICs],['TR.EventType','TR.EventType.date'],{'SDate':'2001-01-01','EDate': '-1AW','EventType':'ECALL:RES'})…
-
How to add historical date when using the quick function, GRMEDIAN, from Workspace Excel to Python?
Refinitiv Data Platform (Workspace) - Python - Windows How do we add a date as a row header from the code below? This produces historical data and the client asks if we could add dates for each data point. import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['NVDA.O'], fields =…
-
Workspace login invalid parameter
I have a subscription of refinitive workspace but when I log into the app on my laptop or PC it says that couldn't connect to server or if I try logging in through web version it says "invalid parameter". I am really exhausted after trying to contact with helpdesk. They never connect my call and put me on hold for 1 hour.
-
get_symbology() got an unexpected keyword argument 'bestMatch'
Since yesterday when I've upgrade Eikon 1.0.2 to 1.1.16 (latest) and Python from 3.6 to 3.11, I can't use get_symbology with the parameter "bestMatch". ¿Any idea? get_symbology() got an unexpected keyword argument 'bestMatch'
-
Curve points tenors
Hi! I'm using Python refinitiv.dataplatform. I want to retrieve Zero curves which have unite format for all curve points tenors. All the curves OIS, 3M, 6M should have the same curve points tenors like [ON, 1W, 1M, 3M ....]. Is that possible to have this condition written in the request body parameters? request_body =…
-
I am in the process of writing code for working with Eikon Data Api.
The important part is getting the right input data. For Example, simple fragment of code: df, err = ek.get_data([‘MGP’], ['TR.PriceClose', 'TR.CompanyMarketCapitalization']) Some data I want to check, and some data I can't find through Data Item Browser in Refinitiv Eikon, please tell me correct parameter names to write…
-
how to define input parameters for get_data
Hi, I am new to API and trying to learn. can someone provide an example to me of how to define an input parameter (RICs) for the API get_data (I would like to see If I can pass a list of selective RICs (may be as txt file) and based on that it return me the result in Jason format? thanks
-
Is it possible to set the parameters so that it only returns the data available?
I am interested in pulling the entire history for financial metric(s) for several companies. For example, suppose I am interested in pulling the total revenue for AGFEED Industries. I see that the data is available from 2010 to 2005 and I am interested in pulling the entire history I am able to pull the history using the…
-
get_timeseries with extra parameters
Hello, presuming get_timeseries mimics the functionality of RHistory Excel function I would like to use the TSREPEAT parameter. I would like to download time series data that is not available in the TR function so I'm guessing not available via get_data in the API.I am trying to download similar data for seven rics and…
-
Can Eikon Data API support the ‘SDate’ and ‘EDate’ parameters as shown in the attached screenshot?
Can Eikon Data API support the ‘SDate’ and ‘EDate’ parameters as shown in the attached screenshot? Could you please share an example showing how to retrieve historical data?
-
can we do parameterized subscription , means we need only selected 6 fields in Tib message
can we do parameterized subscription , means we need only selected 6 fields in Tib message
-
How to Pull List of all output options for a TR field?
I'm wondering if there is a way to flexibly pull all "Output" parameters for a given TR field. Currently, I can manually go to Data Item Browser, click into "Parameters" tab and see the "Output" drop-down. Is there a way to do this faster than manually going through each TR code? Thanks
-
command line parameter for multiple RIC
I am using this line of command : python market_price_edpgw_service_discovery.py --user GE-A-12345678-9-0123 --password mypassword --ric /DIS.N How can I supply multiple ric values?
-
eikon data api passing parameter
ric=['7207.T'] fields = ['TR.GICSSector', 'TR.GICSIndustry', 'TR.ClosePrice', 'CF_CURR', 'TR.CompanyMarketCap'] params={'TR.CompanyMarketCap': {'CURN':'USD'}} ndata = eikon_data.get_data( rics, fields,params); Could you help me with passing arguments to get_data function? For example, I'd like marketcap in USD and above…