> ## 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.

# Sensitivity scaling

> Reference for the Sensitivity Scaling configuration file, which applies a scale factor to SBM sensitivities by category, used for jurisdiction-specific adjustments such as CRR2 underwriting position scaling across business days 0 to 5.

export function renderConfigIntro(fileName, description, storeName = "") {
  const cleanDescription = (description ?? "").trim();
  const sentence = cleanDescription && !cleanDescription.endsWith(".") ? `${cleanDescription}.` : cleanDescription;
  const cleanStore = (storeName ?? "").trim();
  return <p>
      The <strong>{fileName}.csv</strong> file {sentence}
      {cleanStore ? <>
          {" "}
          It is loaded into the <strong>{cleanStore}</strong> store.
        </> : null}
    </p>;
}

{renderConfigIntro("Sensitivity Scaling", "specifies the SBM sensitivity scaling by category.  For example, the underwriting scaling for CRR2.", "SensitivityScaling")}

For details see [Underwriting Positions](../interpret-impl/jurisdictions/crr2#underwriting-positions).

## File format

| Field name   | Description                                                       |
| ------------ | ----------------------------------------------------------------- |
| Category     | The category used to specify the scale factor                     |
| Scale Factor | The scale factor applied to the SBM sensitivities                 |
| Start Date   | The start date that the parameter takes effect                    |
| ParameterSet | The parameter set to which the parameter belongs (default = BCBS) |

## File values

| Category       | Scale Factor | Start Date | ParameterSet |
| -------------- | ------------ | ---------- | ------------ |
| Business Day 0 | 0            | 2016-01-01 | CRR2         |
| Business Day 1 | 0.1          | 2016-01-01 | CRR2         |
| Business Day 2 | 0.25         | 2016-01-01 | CRR2         |
| Business Day 3 | 0.25         | 2016-01-01 | CRR2         |
| Business Day 4 | 0.50         | 2016-01-01 | CRR2         |
| Business Day 5 | 0.75         | 2016-01-01 | CRR2         |
