Skip to contents

The Long-Term Real Rate Average is the unweighted average of bid real yields on all outstanding TIPS with remaining maturities of more than 10 years and is intended as a proxy for long-term real rates.

Usage

tr_real_long_term(date = NULL)

Arguments

date

(character(1) | numeric(1)) date in format yyyy or yyyymm. If NULL, all data is returned. Default NULL.

Value

A data.table::data.table() containing the rates or NULL when no entries were found.

See also

Examples

if (FALSE) { # \dontrun{
# get data for a single month
tr_real_long_term("202201")
# or for the entire year
tr_real_long_term(2022)
} # }