bayesline.api.equity.TimeSeriesBetaMeasureSettings#
- pydantic model bayesline.api.equity.TimeSeriesBetaMeasureSettings#
Settings for time series beta measure.
This class defines settings for a time series beta measure, which provides time series beta data for portfolio analysis.
Show JSON schema
{ "title": "TimeSeriesBetaMeasureSettings", "description": "Settings for time series beta measure.\n\nThis class defines settings for a time series beta measure,\nwhich provides time series beta data for portfolio analysis.", "type": "object", "properties": { "type": { "const": "TimeSeriesBeta", "default": "TimeSeriesBeta", "title": "Type", "type": "string" }, "rescale_bench": { "default": true, "description": "Rescale the benchmark holdings to sum to the sum of the holdings.", "title": "Rescale Bench", "type": "boolean" } }, "additionalProperties": false }
- Config:
frozen: bool = True
extra: str = forbid
- Fields:
rescale_bench (bool)type (Literal['TimeSeriesBeta'])
- field type: Literal['TimeSeriesBeta'] = 'TimeSeriesBeta'#
- field rescale_bench: bool = True#
Rescale the benchmark holdings to sum to the sum of the holdings.