数据截止 {{ info.data_cutoff or info.scan_date or "—" }}{% if info.stale %} · 需要更新{% endif %}
{% for period in info.periods %}
{% if period.period in (30, 60, 180) %}
{{ period.period }}日位置
{{ "%.1f%%"|format(period.position_pct) if period.position_pct is not none else "—" }}
{% if period.position_pct is not none %}
{% endif %}
低 {{ "%.2f"|format(period.n_low) if period.n_low is not none else "—" }} ·
高 {{ "%.2f"|format(period.n_high) if period.n_high is not none else "—" }}
{% if period.distance_to_low_pct is not none or period.gain_pct is not none %}
{% if period.distance_to_low_pct is not none %}距低 {{ "%.1f%%"|format(period.distance_to_low_pct) }}{% endif %}
{% if period.distance_to_high_pct is not none %} · 距高 {{ "%.1f%%"|format(period.distance_to_high_pct) }}{% endif %}
{% endif %}
{% endif %}
{% endfor %}
查看全部周期位置标尺
{% for period in info.periods %}
{{ period.period }}日
{% if period.position_pct is not none %}
区间低点 {{ "%.2f"|format(period.n_low) if period.n_low is not none else "—" }}区间高点 {{ "%.2f"|format(period.n_high) if period.n_high is not none else "—" }}
{% for bp in info.board_context.periods %}
{% if bp.period in (30, 60, 180) %}
{{ bp.period }}日
{{ "%.1f%%"|format(bp.stock_pct) if bp.stock_pct is not none else "—" }}
{% if bp.rank and bp.rank_total %}
排 {{ bp.rank }}/{{ bp.rank_total }}
{% endif %}
行业均值 {{ "%.1f%%"|format(bp.board_avg_pct) if bp.board_avg_pct is not none else "—" }}
{% endif %}
{% endfor %}
{% endif %}
基础字段缺失项显示为 —
量价方向
{{ info.volume_price_state or (info.volume.state if info.volume else "—") }}
低点共振
×{{ info.low_resonance }}
高点共振
×{{ info.high_resonance }}
PE TTM
{{ "%.2f"|format(info.valuation.pe_ttm) if info.valuation.pe_ttm is not none else "—" }}
PB
{{ "%.2f"|format(info.valuation.pb) if info.valuation.pb is not none else "—" }}
换手率
{{ "%.2f%%"|format(info.valuation.turnover_rate) if info.valuation.turnover_rate is not none else "—" }}
股息率 TTM
{{ "%.2f%%"|format(info.valuation.dv_ttm) if info.valuation.dv_ttm is not none else "—" }}
量比
{{ "%.2f"|format(info.valuation.volume_ratio) if info.valuation.volume_ratio is not none else "—" }}
估值日期
{{ info.valuation.trade_date or "—" }}
数据说明
缺失项未参与判断
{% endif %}
{% endblock %}
{% block scripts %}
{% if info %}
{% endif %}
{% endblock %}