-
how can I pull in python the historical holding of an etf? for example the holding of XLK.P as of 31
how can I pull in python the historical holding of an etf? for example the holding of XLK.P as of 31-12-2019
-
Adjusted close prices
Client wants to get to get dividend adjusted close prices sample RIC IXJ Python code snips below for reference. What should I use in the PRICE_FIELD? PRICE_FIELD = "TRDPRC_1" def fetch_prices(rics: list, interval: str) -> pd.DataFrame: """Retrieve price history for a list of RICs.""" raw = ld.get_history( universe = rics,…
-
Can you help in creating the api code?
Client wanted to get the api code for the excel file he provided.(Sheets Historical Data- Cotton Sales and Historical Data- Cotton Purchases) He also wanted to see the contract name like Dec26 etc import lseg.data as ld ld.open_session() df = ld.get_history( universe=[ "CFTCOTUSAMHY1", "CFTCOTUSAMKY1", "CFTCOTUSAMNY1",…
-
Can you advise if client is using the correct endpoints and library?
Client is accessing news via API, however they are not able to extract news sources from NS:DJN, NS:WSJ, NS:BRN, NS:MKTW, NS:IBD but are able to extract from NS:RTRS
-
Application does not get pre-trade (Bid/Ask etc.) updates from ADS
We have a mature RFA .Net based application that successfully subscribes to many different instruments. Recently our customer has indicated that certain, mostly North American, equities are not getting the pre-trade updates (bid/ask etc.) that follow the early morning cleaning. Furthermore, a snap of those instruments…
-
rd.news.get_story('urn:newsml:newswire.refinitiv.com:20171029:nTOPNEWS:552851')
I currently use the following and understand it is being retired. What is my best option to pull news in python that also links to articles? rd.news.get_story('urn:newsml:newswire.refinitiv.com:20171029:nTOPNEWS:552851')
-
Composite Extraction Request API - Field Required to Identify Defaulted Bonds
Hi Team, I am using the Composite Extraction Request API to extract bond reference data for a list of ISINs. My requirement is to identify whether a bond has been Defaulted. I would like to know which content field/attribute should be included in the extraction request that can provide the bond status, specifically…
-
Block trade via the API
Client asking if its possible to pull block trade via the API? Keen to be able to see block trades and pull out the legs such as published by the ASX highlighted. (Attached the screenshot). *Currently accessing the API via Python using LSEGs package to access the data library, also have a workspace license setup. Mainly…
-
Reliably resolving quote RICs for a bond ISIN (HistoricalSearch vs GovCorpSearch vs T&C)
Hi, I'm trying to resolve the quote RICs for a given bond from its ISIN, and I'm getting inconsistent coverage depending on which endpoint I use. I'd like your guidance on the right approach. What I need per bond is the composite (=), the evaluated RRPS RIC, the Tradeweb RIC (=TE or =TWEB depending on the security), and…
-
Amount Outstanding History
Is there a way to pull the changes to a bond's amount outstanding? The Amount Outstanding tab under "BV" shows this detail (snip attached) but I'm unable to find a way to download this through LSEG api
-
Is There a Way to Automatically Update Economic Events for Each New Week using Python?
Our client is looking to get this data updated via excel every week. He's exporting the data through Economic Monitor App. And selecting Download Realtime data (with formula). Client is looking if there's a way to fix/circumvent this? Because, otherwise, he needs to redownload the set every week again.
-
How to ge NSE 500 bulk deals, block deals, short-selling data, and earnings surprise?
Needed to download important data points with multiple requests I had few data downloading requests to start with I wanted to download bulk, block deals and Short selling data for stocks on the NSE specifically NSE 500, is there any way I can download this? it is available on NSE website but I cannot download the data in…
-
Workspace Time And Sales streaming data using Python
Hi Team, Good day! We would like to confirm if time and sales app data can be pulled/streamed like bid/ask in python? Client referred to this article, but he would like it for FX instruments…
-
IPA Analytics API to calculate analytics
He is using the IPA Analytics API to calculate analytics — including Spread Duration — for a list of bonds. Some of these instruments are Floating Rate Notes (FRNs), and for most of them no spread duration is being returned (e.g. <CH151267688=>). However, when we run IPA on <CH151267688=> individually, a Spread Duration…
-
Extracting SDC Platinum Deals via Workspace API
Hello Team, Alexandra here from the CSM team. Client wants to extract SDC Platinum deals using Workspace API. They want at least a sample code to extract the data. Questions: How can we extract the data from SDC platinum via Codebook in Workspace? How long will it take for the data to extract and is there certain…