如何从 isin 而不是 ticker 请求数据
How to request data from an isin instead of a ticker
通过 jBloomberg 使用 Bloomberg API,如何根据 isin 或 sedol 代码而不是 Bloomberg 代码检索数据?
这在彭博开发者指南中有详细说明:
A security must conform to the following syntax:
/[Topic Prefix]/SYMBOLOGY[@Pricing Source][Exchange]
Where [Topic Prefix] is one of the following: ticker cusip wpk isin buid
sedol1 sedol2 sicovam common bsid svm cins cats bbgid
因此,如果您想请求有关 IBM 的数据,您可以使用以下任何安全标识符:
String ticker = "IBM US Equity";
String isin = "/isin/US4592001014";
String sedol = "/sedol1/2005973";
通过 jBloomberg 使用 Bloomberg API,如何根据 isin 或 sedol 代码而不是 Bloomberg 代码检索数据?
这在彭博开发者指南中有详细说明:
A security must conform to the following syntax:
/[Topic Prefix]/SYMBOLOGY[@Pricing Source][Exchange]
Where [Topic Prefix] is one of the following: ticker cusip wpk isin buid sedol1 sedol2 sicovam common bsid svm cins cats bbgid
因此,如果您想请求有关 IBM 的数据,您可以使用以下任何安全标识符:
String ticker = "IBM US Equity";
String isin = "/isin/US4592001014";
String sedol = "/sedol1/2005973";