{% extends "base.html" %} {% block title %} {% if info %}{{ info.name }} {{ info.code }} · 慢慢看{% else %}未找到 · 慢慢看{% endif %} {% endblock %} {% block content %} {% if not_found %}
本地缓存没有该代码数据 返回看盘台
代码:{{ code }}
{% else %}
{{ info.name }} {{ info.code }} 现价 {{ "%.2f"|format(info.price) if info.price is not none else "—" }} {% if info.change_pct is not none %} {{ "%+.2f%%"|format(info.change_pct) }} {% else %} {% endif %}
返回看盘台
先看三个关键周期
0 接近区间最低,100 接近区间最高;位置只描述价格坐标,不代表买卖信号。
数据截止 {{ 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 "—" }}
低点 {{ "%.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 "—" }}
{% 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 "—" }}
{{ "%.1f%%"|format(period.position_pct) }} {% else %}
数据不可用
{% endif %}
{% endfor %}
位置走势
基础字段 缺失项显示为 —
量价方向
{{ 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 "—" }}
估值日期
{{ info.valuation.trade_date or "—" }}
数据说明
缺失项未参与判断
{% endif %} {% endblock %} {% block scripts %} {% if info %} {% endif %} {% endblock %}