Skip to main content

house_price_index

Get the House Price Index by country from the OECD Short-Term Economics Statistics.

Examples

from openbb import obb
obb.economy.house_price_index(provider='oecd')
# Multiple countries can be passed in as a list.
obb.economy.house_price_index(country='united_kingdom,germany', frequency='quarter', provider='oecd')

Parameters

NameTypeDescriptionDefaultOptional
countryUnion[str, List[str]]The country to get data. Multiple items allowed for provider(s): oecd.united_statesTrue
frequencyLiteral['monthly', 'quarter', 'annual']The frequency of the data.quarterTrue
transformLiteral['index', 'yoy', 'period']Transformation of the CPI data. Period represents the change since previous. Defaults to change from one year ago (yoy).indexTrue
start_dateUnion[date, str]Start date of the data, in YYYY-MM-DD format.NoneTrue
end_dateUnion[date, str]End date of the data, in YYYY-MM-DD format.NoneTrue

Returns

OBBject
results : List[HousePriceIndex]
Serializable results.

provider : Optional[Literal['oecd']]
Provider name.

warnings : Optional[List[Warning_]]
List of warnings.

chart : Optional[Chart]
Chart object.

extra : Dict[str, Any]
Extra info.

Data

NameTypeDescription
dateUnion[date, str]The date of the data.
countrystr
valuefloatShare price index value.