{% extends "base.html" %}
{% block head %}
市场资金流向报告
{% endblock %}
{% block header %}
{{ super() }}
市场概况:上证指数 {{ index_value }}({{ index_change }})| 北向资金 {{ north_flow }}
{% endblock %}
{% block content %}
一、大盘资金流向
| 类型 | 净流入(亿元) |
{% for item in market_flow %}
| {{ item.name }} |
{{ item.value }} |
{% endfor %}
二、行业板块资金流向(TOP10)
| 排名 | 行业 | 净流入(亿元) |
{% for item in sector_flow %}
| {{ loop.index }} |
{{ item.name }} |
{{ item.value }} |
{% endfor %}
三、北向资金
| 日期 | 沪股通(亿元) | 深股通(亿元) | 合计(亿元) |
{% for item in north_flow_detail %}
| {{ item.date }} |
{{ item.sh }} |
{{ item.sz }} |
{{ item.total }} |
{% endfor %}
{% endblock %}