bayesline.api.equity.AVaRMeasureSettings#

pydantic model bayesline.api.equity.AVaRMeasureSettings#

Show JSON schema
{
   "title": "AVaRMeasureSettings",
   "type": "object",
   "properties": {
      "type": {
         "const": "Analytical VaR",
         "default": "Analytical VaR",
         "title": "Type",
         "type": "string"
      },
      "alpha": {
         "default": [
            0.1,
            0.05
         ],
         "items": {
            "type": "number"
         },
         "title": "Alpha",
         "type": "array"
      }
   },
   "additionalProperties": false
}

Config:
  • frozen: bool = True

  • extra: str = forbid

Fields:
  • alpha (list[float])

  • type (Literal['Analytical VaR'])

field type: Literal['Analytical VaR'] = 'Analytical VaR'#
field alpha: list[float] = [0.1, 0.05]#
property columns: list[str]#