The most recent content from our members.
...he remote host" error while using the dataplatform API in python. While running the get_timeseries function in a loop, i get this error in every subsequent call.
Below is the code I am using. Anyone can help? Thank you. ********************************* import refinitiv.data as rd from refinitiv.data.content import search rd.open_session() response = search.Definition("AU000000BHP4 Berlin",top=1).get_data() response.data.df.iloc[0][4] rd.close_session()…
Here is the code I did to pull but there is only one date: import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['ABI.BR'], fields = [ 'TR.NumEstRevisingUp', 'TR.NumEstRevisingDown', 'TR.PriceClose.date' ], parameters={ # 'Curn': 'CAD', # 'Frq': "1D" 'SDate': '-5', # "2023-11-01", 'EDate': '0', #…
<module> df_chain1 = ek.get_data(chain_id, fields=field2, parameters={"SDate":date_end2, "EDate":date_start2, "Frq":"D"}) "C:\Program Files\Anaconda3\lib\site-packages\eikon\data_grid.py", line 141, in get_data result = eikon.json_requests.send_json_request(DataGrid_UDF_endpoint, payload, debug=debug) File "C:\Program…
import refinitiv.data as rd index_ric = '0#.KS200' summary = rd.get_history( universe = index_ric, fields = [ "TR.CompanyMarketCap", # "TR.GICSSector", ], start = "2024-06-01", end = "2024-06-30" ) summary When running the above I get the following error RDError: Error code -1 | Unable to resolve all requested identifiers…
How to get all bonds issued by companies in an index, e.g. 0#.GDAXHI using python? Is there a way we can list down all constituent RICs under 0#.GDAXHI, then use the result in rd.discovery.search > rd.discovery.Views.GOV_CORP_INSTRUMENTS to retrieve all the bonds issued?
Hi, I'm quite comfortable with the Eikon API and I'm making an effort to embrace the newer LSEG API. I know that with the RDP API it was possible to do: from refinitiv.data import eikon as ek However, I don't seem to be able to do that with lseg.data. Is it possible to import eikon from lseg.data, and if so, how?…
Hello Team, client needs a python script that would aggregate the Amount Outstanding based on Issue Rating for all US Municipal Bonds using python. We have this script but it is limited to 10,000 rows and the total result is 992,151. import refinitiv.data as rd rd.open_session() rd.discovery.search( view =…
We are trying to get MMD files downloaded using Postman with RDP CFS API (Eikon Data API). The user ids and access rights were set up few months back and verified. User Id being used - xxx https://api.refinitiv.com/file-store/v1/packages?bucketName=bulk-custom&packageId=41a7-f70f-acb43762-b665-082bdbde825f Now when we try…
Hi team, I am trying to get the full holdings list for a series of etf using the refinitv API. I have a code to do it for lists / indices, but the same doesn't work for etfs, for which I can only seem to get the top 10. The first code below gives you the top 10 holding of the etf. The second gives you the full list (for a…
It looks like you're new here. Sign in or register to get started.