在 Excel 上使用 Bloomberg API 查找股票代码 change/acquisition
Using Bloomberg API on Excel to find a stock ticker change/acquisition
我想知道在 Excel 中是否有一种方法可以使用 Bloomberg API 来查找代码是否已更改或被其他公司收购。
例如,给定这些值,
BOFI US (Axos Financial Inc)
EVHC US (Envision Healthcare Corp)
COOL US (PolarityTE Inc)
应该return
AX US (ticker change on 2018/10/01)
Acquired by KKR on 2018/10/11
PTE US (ticker change on 2018/09/18)
分别
值得做的第一件事是找出安全状态:
BDP("BOFI US Equity","MARKET_STATUS")
returns TKCH
表示代码更改。接下来,您可能希望 EQY_FUND_TICKER
描述为:
Returns the equity ticker for the primary security of this class/line. Primary security refers to the security trading in the class/line's primary market.
或FUNDAMENTALS_TICKER
描述为:
Specifies the ticker to access equity fundamental data for a company. The price data of the fundamental ticker is used to compute most financial ratios which combine market data and equity fundamental data. If a company has several listings/tickers, Bloomberg selects the fundamental ticker based on listing dates, country of domicile, and liquidity.
澄清一下,如果 MARKET_STATUS
是 TKCH
,我只会使用这两个字段中的任何一个。
我想知道在 Excel 中是否有一种方法可以使用 Bloomberg API 来查找代码是否已更改或被其他公司收购。
例如,给定这些值,
BOFI US (Axos Financial Inc)
EVHC US (Envision Healthcare Corp)
COOL US (PolarityTE Inc)
应该return
AX US (ticker change on 2018/10/01)
Acquired by KKR on 2018/10/11
PTE US (ticker change on 2018/09/18)
分别
值得做的第一件事是找出安全状态:
BDP("BOFI US Equity","MARKET_STATUS")
returns TKCH
表示代码更改。接下来,您可能希望 EQY_FUND_TICKER
描述为:
Returns the equity ticker for the primary security of this class/line. Primary security refers to the security trading in the class/line's primary market.
或FUNDAMENTALS_TICKER
描述为:
Specifies the ticker to access equity fundamental data for a company. The price data of the fundamental ticker is used to compute most financial ratios which combine market data and equity fundamental data. If a company has several listings/tickers, Bloomberg selects the fundamental ticker based on listing dates, country of domicile, and liquidity.
澄清一下,如果 MARKET_STATUS
是 TKCH
,我只会使用这两个字段中的任何一个。