{% extends "base.html" %}
{% block title %}Sector Performance Report{% endblock %}
{% block extra_css %}
{% endblock %}
{% block content %}
Sector Performance Report
Chart data not available
{% endif %}The market is showing {% if sector_overview.trend == 'up' %}positive{% elif sector_overview.trend == 'down' %}negative{% else %}mixed{% endif %} trends across sectors. The best performing sector is {{ sector_overview.top_performer.name }} with a return of {{ "%+.2f"|format(sector_overview.top_performer.change) }}% , while {{ sector_overview.worst_performer.name }} is lagging with {{ "%+.2f"|format(sector_overview.worst_performer.change) }}% .
| Sector | 1D | 1W | 1M | YTD | 1Y |
|---|---|---|---|---|---|
| {{ sector }} | {{ "%+.2f"|format(data['1D']) }}% | {{ "%+.2f"|format(data['1W']) }}% | {{ "%+.2f"|format(data['1M']) }}% | {{ "%+.2f"|format(data['YTD']) }}% | {{ "%+.2f"|format(data['1Y']) }}% |
{{ insight.summary }}
{% if insight.stocks %}Related Stocks: {{ insight.stocks|join(', ') }}
{% endif %}