Government Auctions Results Fetching

Hi there,
Eikon Desktop includes the app 'Governments Auctions' where you can retrieve the latest bond auction results which look like this:
And then there is a possibility to download an Excel file with the data.
1) However, I would like to fetch this data with C# using EikonDataAPI. Is there an opportunity to do it?
(P.S. similar to the function
eikon.GetTimeSeries()
where the prices for the given period could be pulled).
2) IF not, is there any way to pull the list of ISINs and/or RICs for the Government Auction Results of the given time period for the given country?
Thanks
Best Answer
-
@d.fecher So I have been able to get some of the data with our Refinitiv Data Library - here is the API call using Python Access Layer:
import refinitiv.data as rd
rd.open_session()
rd.discovery.search(
view=rd.discovery.Views.GOV_CORP_INSTRUMENTS,
select="ISIN,RIC,IssuedAs,IssueDate,AuctionDate,,Currency,FaceIssuedTotal,CouponRate,MaturityDate",
filter="IssuerCountryName eq 'Canada' and IndustrySectorDescription eq 'Sovereign' and AuctionDate ge 2022-10-01 and IsActive eq true and AssetStatus ne 'MAT'",
top=10000,
)You can try this in a codebook instance to see the result for yourself in python.
Now the RD library also has a .NET variant that is currently in Beta. You can find out more using the search tutorial here. From the tutorial we can just replace the filter text and select text and we should get the same result set back.
response = Search.Definition().View(Search.View.GovCorpInstruments)
.Filter("IssuerCountryName eq 'Canada' and IndustrySectorDescription eq 'Sovereign' and AuctionDate ge 2022-10-01 and IsActive eq true and AssetStatus ne 'MAT'")
.Select("ISIN,RIC,IssuedAs,IssueDate,AuctionDate,,Currency,FaceIssuedTotal,CouponRate,MaturityDate")
.Top(10000)
.GetData();The Search API is very powerful - but has some complexity to it - there are a couple of great articles on this here and here. Though they are in Python - the query texts etc should all be directly transferable to their .NET counterparts. I hope this can help.
0
Answers
-
Hi @d.fecher
I would recommend you open a ticket within Refinitiv Support to ask whether this specific data can be programmatically accessed. You can also refer to this post within your ticket for details. Note: You may want to reference if they can provide an example within Excel or whether the data is available within the Search service.
0 -
0
-
thank you for your reply! I will try it
0 -
0
-
Happy to help! There are a lot of additional examples that can help you with Search - including a Search Metadata Helper in the second article - this can help you find all of the Selectable and Filterable items for each type of search view eg People, GovCorpInstruments etc
0 -
Previously, I used to pull data via EikonDataAPI which could be referenced and is available in NuGet Gallery.
However, in the sample code for 'Search' I see that Refinitiv.Data is referenced, and I can't find the FDP Library in NuGet Gallery or in your provided links. I am probably doing something wrong, could you give a hint?
0 -
Hi @d.fecher
If you are looking for a .Net solution, you can find many Search Examples using the Refinitiv Data Library for .Net. The Search Examples are built with Visual Studio and will automatically pull down the Refinitiv.Data and Refinitiv.Data.Content NuGet packages.
In addition, the Search Article has links to many other .Net examples that have been implemented within a .Net Interactive environment.
0 -
0
Categories
- All Categories
- 3 Polls
- 6 AHS
- 36 Alpha
- 166 App Studio
- 6 Block Chain
- 4 Bot Platform
- 18 Connected Risk APIs
- 47 Data Fusion
- 34 Data Model Discovery
- 688 Datastream
- 1.4K DSS
- 624 Eikon COM
- 5.2K Eikon Data APIs
- 10 Electronic Trading
- Generic FIX
- 7 Local Bank Node API
- 3 Trading API
- 2.9K Elektron
- 1.4K EMA
- 255 ETA
- 557 WebSocket API
- 38 FX Venues
- 14 FX Market Data
- 1 FX Post Trade
- 1 FX Trading - Matching
- 12 FX Trading – RFQ Maker
- 5 Intelligent Tagging
- 2 Legal One
- 23 Messenger Bot
- 3 Messenger Side by Side
- 9 ONESOURCE
- 7 Indirect Tax
- 60 Open Calais
- 276 Open PermID
- 44 Entity Search
- 2 Org ID
- 1 PAM
- PAM - Logging
- 6 Product Insight
- Project Tracking
- ProView
- ProView Internal
- 22 RDMS
- 1.9K Refinitiv Data Platform
- 690 Refinitiv Data Platform Libraries
- 4 LSEG Due Diligence
- LSEG Due Diligence Portal API
- 4 Refinitiv Due Dilligence Centre
- Rose's Space
- 1.2K Screening
- 18 Qual-ID API
- 13 Screening Deployed
- 23 Screening Online
- 12 World-Check Customer Risk Screener
- 1K World-Check One
- 46 World-Check One Zero Footprint
- 45 Side by Side Integration API
- 2 Test Space
- 3 Thomson One Smart
- 10 TR Knowledge Graph
- 151 Transactions
- 143 REDI API
- 1.8K TREP APIs
- 4 CAT
- 27 DACS Station
- 121 Open DACS
- 1.1K RFA
- 105 UPA
- 194 TREP Infrastructure
- 229 TRKD
- 918 TRTH
- 5 Velocity Analytics
- 10 Wealth Management Web Services
- 91 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 48 中文论坛