bayesline.api.equity.XSigmaRhoMeasureSettings#
- pydantic model bayesline.api.equity.XSigmaRhoMeasureSettings#
Show JSON schema
{ "title": "XSigmaRhoMeasureSettings", "type": "object", "properties": { "type": { "const": "XSigmaRho", "default": "XSigmaRho", "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" }, "normalize_holdings": { "default": true, "description": "Make holdings sum to one.", "title": "Normalize Holdings", "type": "boolean" }, "analytics_space": { "default": "absolute", "description": "Compute the analytics in `absolute` space, `active` space, or compute the analytics only on the `benchmark`.", "enum": [ "absolute", "active", "benchmark" ], "title": "Analytics Space", "type": "string" } }, "additionalProperties": false }
- Config:
frozen: bool = True
extra: str = forbid
- Fields:
analytics_space (Literal['absolute', 'active', 'benchmark'])
normalize_holdings (bool)
rescale_bench (bool)
type (Literal['XSigmaRho'])