聯邦儲備

成熟的美國國債:TreasuryDirect 與紐約聯儲 SOMA 控股的價值

  • August 23, 2022

財政部直接

如果我向 TreasuryDirect 查詢 2022 年 8 月到期的證券:

$result = Invoke-RestMethod ('http://www.treasurydirect.gov/TA_WS/securities/search?maturityDate={0},{1}&format=json' -f '2022-08-01', '2022-08-31')

並顯示結果:

$result | Sort-Object issueDate | Format-Table -Property cusip, securityType, securityTerm, auctionDate, issueDate, maturityDate, somaAccepted

我得到以下資訊:

在此處輸入圖像描述

獲取總值:

'{0:C0}' -f ($result | Measure-Object -Property somaAccepted -Sum).Sum

返回:

$116,558,288,800

SOMA控股

如果我向紐約聯儲查詢截至 2022 年 7 月 27 日的美國國債 SOMA 持有量:

$result_tsy = Invoke-RestMethod ('https://markets.newyorkfed.org/api/soma/tsy/get/all/asof/{0}.json' -f '2022-07-27')

並顯示到期日為 8 月的項目:

$result_tsy.soma.holdings | Where-Object maturityDate -GE '2022-08-01' | Where-Object maturityDate -LE '2022-08-31' | Format-Table *

我得到以下資訊:

在此處輸入圖像描述

如果我計算總 parValue:

'{0:C0}' -f ($result_tsy.soma.holdings | Where-Object maturityDate -GE '2022-08-01' | Where-Object maturityDate -LE '2022-08-31' | Measure-Object -Property parValue -Sum).Sum

我得到:

$194,344,004,700

問題

比較兩個值:

TreasuryDirect:     $116,558,288,800
SOMA Holdings USTS: $194,344,004,700

我猜 USTS SOMA Holdings 的價值是權威的答案,就知道 8 月份有多少成熟。

為什麼TreasuryDirect價值較低?

電源外殼

上面的所有命令都可以在 Windows 上的 PowerShell 提示符下執行(或者 Mac 和 Linux,如果你安裝了它)。

是的 SOMA 值是要使用的值。Treasury Direct somaAccepted value 是 SOMA 在該國庫拍賣發生時收取的金額,但不反映美聯儲在發行後可能從其交易商處進行的任何購買。例如。cusip 912828TJ9 是 10 年 UST 於 2012 年發行的。美聯儲在拍賣中沒有採取任何措施,但從那時起購買了一堆(在 2020 年初火箭筒 QE 期間沒有查過 Id 猜測)。

引用自:https://economics.stackexchange.com/questions/52456