Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

This page provides a description of how we set up the context values. The techniques employed are generic examples that can be extended, adapted and repeated for any use case that we need. In all cases, we make minimal changes to the MR application.
CubeBean nameClass (where applicable)
Var-ES CubecontextValueVaRESCubeVarESCubeContextValueConfig
VaR-ES Summary CubecontextValueVaRESSummaryCubeVarESSummaryCubeContextValueConfig
Sensitivity CubecontextValueSensitivityCubeSensiCubeContextValueConfig
Sensitivity Summary CubecontextValueSensitivitySummaryCubeSensiSummaryCubeContextValueConfig
PLCubecontextValuePLCubePnlCubeContextValueConfig
PL Summary CubecontextValuePLSummaryCubeN/A in Atoti Market Risk.
Combined CubecontextValueMRCombinedCubeMRCombinedCubeContextValueConfig
The context values are defined in the specific mr-*- a specific configuration class ContextValueConfig within /mr-application/src/main/java/com/activeviam/risk/starter/cfg/pivot/impl:
    @Bean
    public List<IContextValue> contextValuePLCube() {
        return List.of(
                QueriesTimeLimit.of(queriesTimeLimit, TimeUnit.SECONDS),
                [...]
        );
    }