彭博API -获取政府债券列表

本文关键字:列表 API 获取 彭博 | 更新日期: 2023-09-27 17:50:52

在彭博终端上点击KENGB ,我得到了所有肯尼亚政府债券的列表。

如何通过Bloomberg API获取此列表?或者他们的股票列表?

(我定期下载各种证券的PX_LAST价格和历史价格,所以我非常熟悉服务"//blp/refdata"和请求"ReferenceDataRequest"…但不知道如何以编程方式检索证券列表(及其股票)

彭博API -获取政府债券列表

试着看看这个:

http://www.openbloomberg.com/content/uploads/sites/2/2013/04/blpapi-developers-guide.pdf

在第77页,它解释了你必须调用哪个服务来获得政府债券。

这是c++代码:

 Service govtService = session.getService("//blp/instruments");
 Request request = govtService.createRequest("govtListRequest");
 request.asElement().setElement("partialMatch", true);
 request.asElement().setElement("query", "T*");// this plus the previous line permits to retrieve all the thicker that begins with T
 request.asElement().setElement("ticker", "LANG_OVERRIDE_NONE");
 request.asElement().setElement("maxResults", 10);
 sendRequest(request, session);

我知道通过API v3获得证券列表的唯一方法是使用EQS API,在其中设置EQS屏幕,然后使用API获得匹配的证券。不确定这是否让您获得与在终端上进行安全搜索相同的结果。