使用价格查找 LQD ETF 的点差

问题描述 投票:0回答:1

我想知道使用价格找到LQD Spread的计算方法。所示图片是来自 Bloomberg 的 LQD ETF,我希望能够将 110.24 点差转换为 124.82bp。如果有人有公式或代码,请告诉我。谢谢你。

LQD Bloomberg ETF

python math mathematical-optimization bloomberg quantitative-finance
1个回答
0
投票

你不需要做数学计算。

G 利差是 LQD 的收益率 - 10 年期政府债券的收益率......简单明了。

要以编程方式执行此操作,只需从 Bloomberg 中提取该字段即可

如果使用Excel:

=BQL('LQD US EQUITY','YAS_ISPREAD_TO_GOVT')

如果使用 VSCode

from xbbg import blp
    
spread = blp.bdp('LQD US EQUITY','YAS_ISPREAD_TO_GOVT')
spread

© www.soinside.com 2019 - 2024. All rights reserved.