-
Error loading 350 underlyings using LSEG COM API
Hello , i am trying to load data from a list of 350 underlyings stored in an array. I use the function marketPrice.GetData(instruments, fields) From the LSEG website Tutorials | Devportal , i understand that the inputs of this function are 2 arrays (fields, instruments) I got the following error What is the correct inputs…
-
Wrokspace API shows error
Trying to pull data by Worksapce API (LSEG Data Libarry, desktop session) returns "Attempting data request…Company Common Name" and close the session before getting data data as attached Please advise what is wrong.
-
How to get Reuters long Term outlook data through Workspace API?
Running this scripts import refinitiv.data as rd rd.open_session() rd.get_history(universe=["pUSCPNY=E","pUSCPNY=M","pUSCPNY=L","pUSCPNY=H"],interval="quarterly",start="2022-01-31",end="2025-12-31") But I am looking for The poll_date for the economic indicator forecasts, which is not displayed below after running the code.…
-
Unable to load syntax in Workspace Codebook. Result only shows blank line or black square.
I am trying to run the code below but I'm only getting blank result or a black square as a result: import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = [ 'FDBc1' ] , fields = [ 'CF_CLOSE', 'CF_VOLUME', 'HST_CLOSE', 'HST_VOLUME' ] ) display(df) and import refinitiv.data as rd rd.open_session() df =…
-
Connectivity Problem using LSEG.Data from C# to LSEG Workspace Desktop
We have a C# application that is using the LSEG.Data and LSED.DataContent (version 2.0.0.0, image version v4.0.30319) libraries. We have two problems at the moment: 1. Cannot connect to the LSEG Workspace Desktop, and 2. Error starting the LSEG Workspace Desktop if it is not running. LSEG.Data.Core.ISession session =…
-
How to get AppInstanceId
I'm attempting to set up the Workspace SDK in container mode, but that requires an AppInstanceId, how do I obtain this? I have Refinitiv Workspace up and running, and can navigate to my webpage that has the app running the WorkspaceSDK, and I have the Loader.init set up with everything it needs, except I'm not sure where…
-
I can display RICs in Quote window but I can't reach them via python in Codebook
Hello, I encountered an issue with some RICs (e.g. USDEURFIXE=WM, PLN=D3, 0#CSRRF) which I can display in Quote window in Workspace, but I can't reach them via python (neither in Workspace Codebook nor with external python). I have checked both with my internal teams as well as with LSEG support and it seems like I have…
-
SxS application is not permissioned to use Workspace Web?
I am trying to use the Workspace SDK (found here: Workspace SDK). I have also created an application in the AppkeyGenerator (found here: Appkey Generator), specifying approved URLs. I followed the initialization tutorial, supplying my ApiKey, and ProductId as needed, and things seemed to work fine when running from…
-
Urgent request for an R library compatible with Refinitiv Workspace
We are currently using the R package eikonapir to access the Eikon Data API. However, this API is not compatible with Refinitiv Workspace, which is now our main platform. Due to an upcoming migration deadline, we urgently need an R-compatible alternative that offers the same data access and functionalities, but works with…
-
How to Transition from C# Eikon to Workspace
Dear LSEG Support Team, Greetings. We have been using the EikonDataAPI NuGet package with C# to access Eikon data. Below is an example of the code we have implemented: using EikonDataAPI; IEikon eikon = Eikon.CreateDataAPI(); eikon.SetAppKey(EikonApiKey); Dictionary<string, string> dic = new Dictionary<string, string>();…
-
Shipping API Question
Is there an API script to see clean products (gasoline, naptha) as imports/exports out of US PADDS zones?
-
Workspace API: unable to connect anymore
Unable to connect using Workspace API since a few days. Was working fine before. Logs when working: 13:22:27.094 [Info] Library version: 1.0.0-beta5 13:22:27.094 [Info] .Net runtime: 4.0.30319.42000 13:22:27.094 [Info] .Net version: 4.8.9290.0 13:22:27.116 [Info] Successfully loaded the Stream:[internal] configuration…
-
How to handle error after transition from Eikon to Workspace
Hi, I'm pulling data from API on thousands of RIC daily. I may have RIC's that's no longer valid, or with typo. Under Eikon, my Python code below will return DataFrame containing information with NA for invalid RIC ('BF.B' and 'BONDS') if I simply ignore df_error, when the list RIC are all invalid. import…
-
Does Eikon API library work via Fabric notebooks?
I wonder if there is a way to be using eikon library via Fabric notebooks ? like so: # Connect to Refinitiv and get datadf_holdings, FundHoldings = ek.get_data([fund_isin],['TR.FundHoldingName', 'TR.FundHoldingRIC','TR.FundPercentageOfFundAssets', 'TR.FundLatestFilingDate'],{'Endnum':'5000'}) would you have a code sample…
-
How to retrieve USD/MXN Outright at broken dates (end of quarter for the next 6 quarters) in python?
How to retrieve USD/MXN Outright at broken dates (end of quarter for the next 6 quarters) in python? e.g. using lseg-data library or any other I was able to see this discussion: https://community.developers.refinitiv.com/discussion/66758?tab=accepted Also, the documentation found on:…