{# Copyright (c) 2025-2026 马建军. All rights reserved. 专有软件,详见 LICENSE.zh-CN.txt #} {% extends "base.html" %} {% block title %}品种简介 - 国内期货监控系统{% endblock %} {% block content %}

品种简介

展示交易所合约规格:交易单位、最小变动、保证金、交割规则等(数据来源:东方财富 / 新浪)。

{% if error %}
{{ error }}
{% elif profile %}
{{ profile.symbol_name or profile.ths_code }} {{ profile.ths_code }} {% if profile.exchange %}{{ profile.exchange }}{% endif %} 来源:{{ profile.source }}
{% for row in profile.rows %}
{{ row.label }}
{{ row.value }} {% if row.hint %}
{{ row.hint }}
{% endif %}
{% endfor %}
{% elif symbol %}

未查询到该合约简介,请检查合约代码是否正确。

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}