-
Does the lseg-data Python library provide any way to download IPO Prospectus data?
We are interested in pulling prospectus data for companies that are about to go public. We found some of the data under Equity New Issues Deals through the Deal Screener app in Workspace. Is there any way to pull this data programmatically through the lseg-data Python library?
-
Reuters Polls retrieval
hi! can one retrieve historical and current Reuters Polls (Economic Indicators, Central Banks, etc), ideally at the contributor level, from LSEG Data Library API, or any other API? I can see there is an old post for Eikon API but I wonder if this can be done with the new API or in any other way. thanks!…
-
How to retrieve data for all KPIs linked to the bond in CODEBK?
I’m trying to retrieve data for the KPIs associated with a sustainability-linked bond (SLB). Many SLBs contain multiple KPIs (structured as separate KPI legs). However, when I query the data in CodeBook, I only receive results for the first KPI leg, even though the bond in my example has four KPIs defined (see Screenshot).…
-
Getting option prices used to create CEVOLSURFACE
Hi, I sent this email to the support desk and they sent me here to ask the question. I am pulling volatility surface data from lseg.data api by doing so : def_get_vol_surface( ul_ric: str,): vol_surface=surfaces.eti.Definition( surface_tag="Vol", underlying_definition=surfaces.eti.EtiSurfaceDefinition(…
-
If i want to use the api outside of codebook like in VScode how do i do that?
-
Retreiving data for multiple KPI legs
I’m trying to retrieve data for the KPIs associated with a sustainability-linked bond (SLB). Many SLBs contain multiple KPIs (structured as separate KPI legs). However, when I query the data, I only receive results for the first KPI leg, even though the bond in my example has four KPIs defined. My goal is to retrieve the…
-
How to get the history HOLC price of XAU using python api
I want to know how to get the historical(e.g. past 10 trading days) daily HOLC(High, Open, Low, Close) price of XAU using python api. The following code is my python code,however, I didn't get the data I want. gold_code = "XAU=" # 黄金现货 fields = ['TR.OPENPRICE', 'TR.HIGHPRICE', 'TR.LOWPRICE', 'TR.CLOSEPRICE'] # 开高低收字段 data…
-
How can one retrieve the ESG ratings of bond issuers?
For different types of bonds (e.g. corporate, government), is it possible to retrieve the issuer and then its ESG ratings (in Python)? For example, for the bond ISINs NO0010844079, XS1989380172, DE000A351MM7 I would need to find the issuer of these bonds, and then the ESG scores or grades (if available) of those issuers.
-
HOW CAN I GET ALL TICKER NAMES FROM CONSOLIDATED EXCHANGES IN US
e.g. AAPL.OQ rather than AAPL.O THIS IS MY CODE. I'M USING CODEBOOK ld.open_session()#US#tickers= list(Screener('U(IN(Equity(active,public,primary))/*UNV:Public*/), IN(TR.ExchangeCountryCode,"US"), IN(TR.GICSSectorCode,"10","15","20","25","30","35","40","45","50","55","60"), DOES_NOT_CONTAIN(TR.ExchangeCode,"PNK"),…
-
Accesing historical StarMine Value Momentum Model scores
Hello, I've been attempting to download historical StarMine Value Momentum Model Scores with the following code: ld.open_session() fields = [ 'TR.ValMoCountryRank', 'TR.ValMoCountryRank.Date'] params = { 'SDate': '0', 'EDate': '-10', 'Frq': 'FQ'} ids = ld.get_history( universe=universe, fields=fields, parameters=params)…