{% extends "base.html" %} {% block title %}Results — RWA Calculator{% endblock %} {% block content %}

Results · {{ framework }}

{% if not success %}
Calculation did not complete successfully — see issues below.
{% endif %}
{{ "{:,.0f}".format(summary.total_rwa) }}
Total RWA
{{ "{:,.0f}".format(summary.total_ead) }}
Total EAD
{{ "{:,}".format(summary.exposure_count) }}
Exposures
{{ "%.1f"|format(summary.average_risk_weight * 100) }}%
Avg risk weight
{{ "{:,.0f}".format(summary.total_rwa_sa) }}
RWA · SA
{{ "{:,.0f}".format(summary.total_rwa_irb) }}
RWA · IRB
{{ "{:,.0f}".format(summary.total_rwa_slotting) }}
RWA · Slotting
{% if summary.floor_applied %}
{{ "{:,.0f}".format(summary.floor_impact) }}
Output floor impact
{% endif %}

RWA by exposure class

{{ chart_rwa_by_class | safe }}

EAD by exposure class

{{ chart_ead_by_class | safe }}

RWA by approach

{{ chart_approach | safe }}

Exposure sample

First {{ table_rows | length }} exposures. Export the full result set via the REST API (/api/export/<fmt>?run_id={{ run_id }}).

{% for c in table_columns %}{% endfor %} {% for row in table_rows %} {% for c in table_columns %} {% set v = row[c] %} {% endfor %} {% endfor %}
{{ c }}
{% if v is number %}{{ "{:,.2f}".format(v) }}{% else %}{{ v if v is not none else "" }}{% endif %}
{% if errors %}

Issues ({{ errors | length }})

{% for e in errors[:20] %}
[{{ e.code }}] {{ e.message }}
{% endfor %} {% endif %}

Run another

{% endblock %}