{% extends "base.html" %} {% block head %} 市场资金流向报告 {% endblock %} {% block header %} {{ super() }}
市场概况:上证指数 {{ index_value }}({{ index_change }})| 北向资金 {{ north_flow }}
{% endblock %} {% block content %}

一、大盘资金流向

{% for item in market_flow %} {% endfor %}
类型净流入(亿元)
{{ item.name }} {{ item.value }}

二、行业板块资金流向(TOP10)

{% for item in sector_flow %} {% endfor %}
排名行业净流入(亿元)
{{ loop.index }} {{ item.name }} {{ item.value }}

三、北向资金

{% for item in north_flow_detail %} {% endfor %}
日期沪股通(亿元)深股通(亿元)合计(亿元)
{{ item.date }} {{ item.sh }} {{ item.sz }} {{ item.total }}
{% endblock %}