-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] More OECD - House Price Index, Immediate Interest Rate (#6473)
* add house price index * static files * unemployment cleanup * EA20 * test params * add immediate interest rates
- Loading branch information
1 parent
919d5a6
commit d80a5ed
Showing
19 changed files
with
1,548 additions
and
422 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
openbb_platform/core/openbb_core/provider/standard_models/house_price_index.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
"""House Price Index Standard Model.""" | ||
|
||
from datetime import date as dateType | ||
from typing import Literal, Optional | ||
|
||
from pydantic import Field | ||
|
||
from openbb_core.provider.abstract.data import Data | ||
from openbb_core.provider.abstract.query_params import QueryParams | ||
from openbb_core.provider.utils.descriptions import ( | ||
DATA_DESCRIPTIONS, | ||
QUERY_DESCRIPTIONS, | ||
) | ||
|
||
|
||
class HousePriceIndexQueryParams(QueryParams): | ||
"""House Price Index Query.""" | ||
|
||
country: str = Field( | ||
description=QUERY_DESCRIPTIONS.get("country", ""), | ||
default="united_states", | ||
) | ||
frequency: Literal["monthly", "quarter", "annual"] = Field( | ||
description=QUERY_DESCRIPTIONS.get("frequency", ""), | ||
default="quarter", | ||
json_schema_extra={"choices": ["monthly", "quarter", "annual"]}, | ||
) | ||
transform: Literal["index", "yoy", "period"] = Field( | ||
description="Transformation of the CPI data. Period represents the change since previous." | ||
+ " Defaults to change from one year ago (yoy).", | ||
default="index", | ||
json_schema_extra={"choices": ["index", "yoy", "period"]}, | ||
) | ||
start_date: Optional[dateType] = Field( | ||
default=None, description=QUERY_DESCRIPTIONS.get("start_date") | ||
) | ||
end_date: Optional[dateType] = Field( | ||
default=None, description=QUERY_DESCRIPTIONS.get("end_date") | ||
) | ||
|
||
|
||
class HousePriceIndexData(Data): | ||
"""House Price Index Data.""" | ||
|
||
date: Optional[dateType] = Field( | ||
default=None, description=DATA_DESCRIPTIONS.get("date") | ||
) | ||
country: Optional[str] = Field( | ||
default=None, | ||
description=DATA_DESCRIPTIONS.get("country", ""), | ||
) | ||
value: Optional[float] = Field( | ||
default=None, | ||
description="Share price index value.", | ||
) |
45 changes: 45 additions & 0 deletions
45
openbb_platform/core/openbb_core/provider/standard_models/immediate_interest_rate.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
"""Immediate Interest Rates Standard Model.""" | ||
|
||
from datetime import date as dateType | ||
from typing import Optional | ||
|
||
from pydantic import Field | ||
|
||
from openbb_core.provider.abstract.data import Data | ||
from openbb_core.provider.abstract.query_params import QueryParams | ||
from openbb_core.provider.utils.descriptions import ( | ||
DATA_DESCRIPTIONS, | ||
QUERY_DESCRIPTIONS, | ||
) | ||
|
||
|
||
class ImmediateInterestRateQueryParams(QueryParams): | ||
"""Immediate (Call money, interbank rate) Rate Query.""" | ||
|
||
country: str = Field( | ||
description=QUERY_DESCRIPTIONS.get("country", ""), | ||
default="united_states", | ||
) | ||
start_date: Optional[dateType] = Field( | ||
default=None, description=QUERY_DESCRIPTIONS.get("start_date") | ||
) | ||
end_date: Optional[dateType] = Field( | ||
default=None, description=QUERY_DESCRIPTIONS.get("end_date") | ||
) | ||
|
||
|
||
class ImmediateInterestRateData(Data): | ||
"""Immediate Interest Rates Data.""" | ||
|
||
date: Optional[dateType] = Field( | ||
default=None, description=DATA_DESCRIPTIONS.get("date") | ||
) | ||
country: Optional[str] = Field( | ||
default=None, | ||
description="Country for which interest rate is given", | ||
) | ||
value: Optional[float] = Field( | ||
default=None, | ||
description="Immediate interest rates, call money, interbank rate.", | ||
json_schema_extra={"x-unit_measurement": "percent", "x-frontend_multiply": 100}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.