Survey Of Economic Conditions Chicago
Implementation details
Class names
Model name | Parameters class | Data class |
---|---|---|
SurveyOfEconomicConditionsChicago | SurveyOfEconomicConditionsChicagoQueryParams | SurveyOfEconomicConditionsChicagoData |
Import Statement
from openbb_core.provider.standard_models.survey_of_economic_conditions_chicago import (
SurveyOfEconomicConditionsChicagoData,
SurveyOfEconomicConditionsChicagoQueryParams,
)
Parameters
- standard
- fred
Name | Type | Description | Default | Optional |
---|---|---|---|---|
start_date | Union[date, str] | Start date of the data, in YYYY-MM-DD format. | None | True |
end_date | Union[date, str] | End date of the data, in YYYY-MM-DD format. | None | True |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
start_date | Union[date, str] | Start date of the data, in YYYY-MM-DD format. | None | True |
end_date | Union[date, str] | End date of the data, in YYYY-MM-DD format. | None | True |
frequency | Literal['annual', 'quarter'] | Frequency aggregation to convert monthly data to lower frequency. None is monthly. | None | True |
aggregation_method | Literal['avg', 'sum', 'eop'] | A key that indicates the aggregation method used for frequency aggregation. ; avg = Average; ; sum = Sum; ; eop = End of Period | None | True |
transform | Literal['chg', 'ch1', 'pch', 'pc1', 'pca', 'cch', 'cca', 'log'] | Transformation type; ; None = No transformation; ; chg = Change; ; ch1 = Change from Year Ago; ; pch = Percent Change; ; pc1 = Percent Change from Year Ago; ; pca = Compounded Annual Rate of Change; ; cch = Continuously Compounded Rate of Change; ; cca = Continuously Compounded Annual Rate of Change; ; log = Natural Log | None | True |
Data
- standard
- fred
Name | Type | Description |
---|---|---|
date | Union[date, str] | The date of the data. |
activity_index | float | Activity Index. |
one_year_outlook | float | One Year Outlook Index. |
manufacturing_activity | float | Manufacturing Activity Index. |
non_manufacturing_activity | float | Non-Manufacturing Activity Index. |
capital_expenditures_expectations | float | Capital Expenditures Expectations Index. |
hiring_expectations | float | Hiring Expectations Index. |
current_hiring | float | Current Hiring Index. |
labor_costs | float | Labor Costs Index. |
non_labor_costs | float | Non-Labor Costs Index. |
Name | Type | Description |
---|---|---|
date | Union[date, str] | The date of the data. |
activity_index | float | Activity Index. |
one_year_outlook | float | One Year Outlook Index. |
manufacturing_activity | float | Manufacturing Activity Index. |
non_manufacturing_activity | float | Non-Manufacturing Activity Index. |
capital_expenditures_expectations | float | Capital Expenditures Expectations Index. |
hiring_expectations | float | Hiring Expectations Index. |
current_hiring | float | Current Hiring Index. |
labor_costs | float | Labor Costs Index. |
non_labor_costs | float | Non-Labor Costs Index. |