{% extends "base.html" %} {% block title %}{{ sim_label }} - Simulation{% endblock %} {% block content %}

{{ sim_label }}

Assess foreign exchange risk on revenue, costs, and net profit

Simulation Parameters
Positive = foreign currency strengthened. Negative = weakened.
Total foreign currency denominated exposure
{% if baseline %}
Company Baseline
Annual Revenue {{ currency_symbol }}{{ "{:,.0f}".format(baseline.revenue) }}
Operating Costs {{ currency_symbol }}{{ "{:,.0f}".format(baseline.costs) }}
Gross Profit {{ currency_symbol }}{{ "{:,.0f}".format(baseline.profit) }}
Margin: {{ "%.2f"|format((baseline.profit / baseline.revenue * 100) if baseline.revenue > 0 else 0) }}%
{% endif %}

Run the simulation to see FX impact

Select currency pair and rate change to analyze exposure

{% endblock %}