-
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.…
-
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 there dll file for Workspace API?
Is there dll file for Workspace API? such as Refinitiv.Data.Core.dll?
-
C# in Workspace Python
Is the functionality C# in Python available in Workspace? If not, is this functionality within the roadmap of enhancement in Workspace?
-
Issue with new Workspace plugin in Excel
We recently moved from Refinitiv Eikon to Workspace and the plugin does not appear to be pulling daily instrument prices as it used to. Wondering if there might be something that needs to change in the formula that pulls the prices? Example: =@IF(B3="","",IF(AND(VALUE('Date &…
-
eikon functionality in LSEG API
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?…
-
When migrating from Refinitiv Eikon to LSEG Workspace, how do I import Eikon Favorites to LSEG?
When migrating from Refinitiv Eikon to LSEG Workspace, how do I import Eikon Favorites to LSEG?
-
Conversion Eikon API to Refinitiv Data API
Hi team I have difficulties converting the following line of code from the Eikon API to the Refinitiv Data API in Python. Could you please help? import eikon as ek # splitted_list is a list of RICs.…
-
From VBA to Python
Years ago I programmed some macros in Eikon that capture and save in a folder on his PC hard disk the graphs of about 200 RICs (stocks, indices, currencies, etc.). They are graphs that have studies, annotations, trend lines, Fibonacci, and that are generated in daily and weekly format. The macros convert all the graphics…
-
Workspace-Upgrade...THANKS!!!
I would like to thank all the people involved in the Eikon to Workspace Upgrade. Thanks to all of you, the upgrade was painless!! No problems. Everything was moved from Eikon to Workspace including hundreds of DataStream Charts. In addition, my Python code to download data works fine. I was dreading the process and was…
-
Symbol support with Workspace get_history
I am migrating a solution from Eikon to Workspace. Here is code to pull some daily bars: import sys import refinitiv.data as rd import pandas as pd import datetime rd.open_session(app_key =<>KEY) Symbol_T = sys.argv[1] Date_T = sys.argv[2] universe = [Symbol_T] df = rd.get_history(universe, end = Date_T,…
-
Eikon to Workspace API
1. Is the Workspace API compatible with Eikon Desktop Data API or is there a need to revamp the application? We use EikonDesktopDataAPI.dll. 2. Does the Workspace API support leased line connection?
-
How to match Workspace TRDPRC_1 on charts with Refinitv .Net API HistoricalPricing Summaries
Hi, I am looking to match up API data to Workspace chart data. Using the .Net sample for historical pricing summaries, I'm finding that TRDPRC_1 sometimes doesn't match that shown in Workspace, wondering if I need to use a different field etc.. This is the sample code: // Retrieve Interday Summaries with P1D (1-day…
-
Refinitiv .Net API Intraday Summaries Request TimeZone
Hi, I am requesting 1 minute candles for EUR= with the following: var DataResponse = Summaries.Definition().Universe("EUR=") .Interval(Summaries.Interval.PT1M) .Count(1440) .GetData(); I see that the timestamps for the returned records are in local time. How would I request them to be returned in UTC? thanks
-
Fixed Income Indexes
Hi, all, I'm trying to get historical prices for fixed income indexes. But I get different results depending if I use RDP api (desktop session with Workspace app) and Eikon api (desktop session with Eikon desktop app). This is code for RDP API: import refinitiv.data as rd bond_indexes =…