-
Replacement for RTX.AdxRtList.StartUpdates regarding Workspace upgrade
Upon checking LDL for .Net sample code, Pricing_StreamingSnapshot might be the one to replace RTX.AdxRtList.StartUpdates. However, the data was not retrived with the same field names as AdfinX. Please let us know how to find which data fields should be used. Otherwise please let us know which namespace should be used.…
-
Back-end errors in get_data and SCREEN
Hello - I have a script that I've used for over a year without many problems, but lately I am getting a lot of "400 Bad Requested universes". You can see below I am screening for companies. When I put this screener syntax in Excel's TR function, I am able to download companies fine. However, I need this Python workflow to…
-
When LSEG Data Library for .Net is released.
Please let us know when LDL for .Net will be officially released for external users even if it is not specific date? The client needs to test with the LDL for .Net until WS upgrade completion.
-
Is it possible to find the RIC of certain company with Eikon Data API if I only have company name...
Is it possible to find the RIC of certain company with Eikon Data API if I only have company name in hand?
-
How to obtain fiscal quarter period name, earnings release as well as period start and end dates
I am looking to obtain the fiscal period name, start and end date as well as earnings release date for a set of tickers. I can obtain the earnings release date and period end date using the code below, but I am unsure how to get the actual fiscal quarter/period (i.e. FY19 Q1)…
-
Getting Module Error
How to fix this issue
-
How to get percent change between two intraday values?
Hello Team, I have syntax below that gets data at exactly 6PM (df) and latest tick of EUR= (df2) I'd like to get the percentage between the two output. I tried df3 =((df2-df)/df*100) but it is not working. Also, how can I set a specific timezone? import refinitiv.data as rd rd.open_session() df = rd.get_history( universe =…
-
Is there dll file for Workspace API?
Is there dll file for Workspace API? such as Refinitiv.Data.Core.dll?
-
Getting a "ConnectionResetError: [WinError 10054] An existing connection was forcibly closed by t...
...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.
-
How to dissect and show US Municipal Bonds' CUSIP in API?
import refinitiv.data as rd rd.open_session() response = rd.discovery.search( view=rd.discovery.Views.MUNICIPAL_INSTRUMENTS, filter = "(IsActive eq true and SearchAllCategoryv2 eq 'US Municipal Bonds')", top = 10000, select = "CUSIP" ) print(response) Tried this but it is reaching the limit, client wants to see the next…
-
Is Eikon API down?
<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…
-
Unable to resolve identifier when requesting data through refinitiv data api
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…
-
Data API C# - Streams stop working
Hello, I am having issues where the streams are freezing (no more data comes in) and then my program has excessive memory usage. When I take a heap shot, all of the memory are used by json objects which look to be refinitiv data objects. It's definitely not my application part holding onto memory. I paused a debug session…
-
How to query the news sources
Hello, Is there an endpoint to get a list of news sources? I would like to have an overview for querying news and filtering by source among those that I choose to select. For illustration here's a Python snippet: from typing import List, Iterable import refinitiv.data as rd import pandas as pd def get_news_sources() ->…
-
Eikon Backend error. 401 Unauthorized using loop of get get_news
I have university access as student to thomson Reuters. I have created loop to read the 1 year data of news headlines + news full story text. It is taking too long time and after that it says me "raise requests.HTTPError(error_message, response=server_response) requests.exceptions.HTTPError: Backend error. 401…