Navigation :
test ../../ test user-ref.html
User & Reference Guide
test ../../ test getting-started.html
Getting started
test ../../ test getting-started/using-this-guide.html
- Using this guide
test ../../ test getting-started/whats-new.html
- What's New
test ../../ test getting-started/frtb-data-model.html
- FRTB Data Model
test ../../ test getting-started/directquery.html
- DirectQuery
test ../../ test configuration.html
Configuration files
test ../../ test datastore.html
Data Stores
test ../../ test database.html
Database
test ../../ test input-files.html
Input Data
test ../../ test tutorials.html
Tutorials
test ../../ test tutorials/data-sanity-check.html
- Data Sanity Check
test ../../ test tutorials/tips-for-validating-the-calculations.html
- Tips for Validating the Calculations
test ../../ test tutorials/viewing-qis-numbers.html
- Viewing QIS Numbers
test ../../ test interpret-impl.html
Interpretation and Implementation of the MAR standard
test ../../ test cube.html
Analytics Reference
test ../../ test dev.html
Developer Guide
test ../../ test dev/dev-release.html
-
Release and migration notes
test ../../ test dev/dev-getting-started.html
-
Getting Started
test ../../ test dev/dev-ref-impl.html
-
FRTB Reference Implementation
test ../../ test dev/dev-core.html
-
FRTB Core
test ../../ test dev/dev-extensions.html
-
Extending the Accelerator
test ../../ test dev/dev-extensions/add-a-new-cube-hierarchy.html
-- Adding New Cube Hierarchies
test ../../ test dev/dev-extensions/add-a-new-cube-measure.html
-- Adding New Cube Measures
test ../../ test dev/dev-extensions/replace-a-cube-measure.html
-- Replacing Cube Measures (Alpha Preview)
test ../../ test dev/dev-extensions/add-a-new-data-loading-unloading-topic.html
-- Adding New Data Loading or Unloading Topics
test ../../ test dev/dev-extensions/organizing-client-customizations-into-seperate-class.html
-- Organizing Datastore Helper Customizations into a Separate Class
test ../../ test dev/dev-extensions/add-a-new-kpi.html
-- Adding New KPIs
test ../../ test dev/dev-extensions/channel-parameter-beans.html
-- Replacing ChannelParameters Spring beans
test ../../ test dev/dev-extensions/add-and-load-new-column-to-existing-file.html
-- Adding and Loading New Columns to an Existing File
test ../../ test dev/dev-extensions/enriching-file-field-adding-column-calculators.html
-- Enriching File Fields by Adding Column Calculators
test ../../ test dev/dev-extensions/set-up-context-values.html
-- Setting up context values
test ../../ test dev/dev-extensions/dev-guidelines.html
--
Developing on the Accelerator
test ../../ test dev/dev-tools.html
-
Configuring Accelerator tools and methodologies
test ../../ test dev/dev-sign-off.html
-
Sign-Off
test ../../ test limits.html
Limit monitoring
test ../../ test sign-off.html
Sign-Off Approvals
test ../../ test what-if.html
What-If Analysis
test ../../ test pdf-guides.html
PDF Guides
test ../../ test glossary.html
Glossary
Replacing Cube Measures (Alpha Preview)
This page provides a description of how some measures can be replaced to modify the calculation logic.
Current status:
Only a few measures are supported; the SBM sensitivities and the SES capital requirements.
The Spring annotations used to define and override the measures may change.
The measures at the beginning of the calculation chain are now defined using Spring beans. These definitions are designed to be overridden.
For example, this can be used to calculate the SES capital requirement according to the
EBA’s RTS on the capitalisation of non-modellable risk factors
. This could be done with the following steps:
Customize the input files, datastore, and IMA cube schema to add the additional fields required by these calculations.
Replace the “ES (SES)” measure with a measure that applies the EBA’s formulas using the additional fields.
The accelerator will continue with the IMA ES calculations using this new custom measure.
To replace the “ES (SES)” measure, note that the default implementation is defined in IMAMeasureBeans
with the following method signature and annotations:
@Qualifier ( NMRF_CAPITAL_REQUIREMENT)
@IMACopperContextBean
public CopperMeasure nmrfCapitalRequirement (){
...
}
This measure can be replaced in any Spring configuration class by adding a bean with a different name, but the same qualifier and @IMACopperContextBean
annotations, adding the @Primary
annotation. If the class you are using is new, be sure to include it in FRTBConfig
imports. For example,
@Primary
@Qualifier ( NMRF_CAPITAL_REQUIREMENT)
@IMACopperContextBean
public CopperMeasure nmrfCapitalRequirementEBA (){
...
}
note
The CopperMeasure
objects returned by these methods should not be published to the copper context by these methods.
This new measure definition can include custom logic and make use of custom measures and levels in the cube. The Accelerator’s IMA ES calculations will use the
measure defined by this bean as the underlying measure.
Suggested further reading
Adding New Cube Hierarchies
Adding and Loading New Columns to an Existing File