{% 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 "—" }}
{% 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|abs) }}{% 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 "—" }}
{{ "%.1f%%"|format(period.position_pct) }} {% else %}
数据不可用
{% endif %}
{% endfor %}
一手计算器?A 股最小交易单位 = 100 股。一手金额 = 现价 × 100。
一手金额
现价 × 100 股
占你现金
距 180 日高点
还差多少到区间最高
距 180 日低点
距离区间最低多远
K 线走势
位置走势
{% if info.board_context %}
行业位置对照 {{ info.board_context.industry }} · 样本 {{ info.board_context.cached_sample }}/{{ info.board_context.constituent_count }} 只
{% 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 "—") }}
低点共振?多个时间周期同时接近低位的数量。×N 表示有 N 个周期同时满足。
×{{ info.low_resonance }}
高点共振?多个时间周期同时接近高位的数量。×N 表示有 N 个周期同时满足。
×{{ info.high_resonance }}
PE TTM?市盈率(滚动 12 个月)= 股价 / 每股收益。反映市场对公司盈利的估值水平。
{{ "%.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?过去 12 个月分红 / 当前股价。反映持有股票的现金回报率。
{{ "%.2f%%"|format(info.valuation.dv_ttm) if info.valuation.dv_ttm is not none else "—" }}
量比?当天成交量 / 过去 5 日平均成交量。量比 > 1 表示放量,< 1 表示缩量。
{{ "%.2f"|format(info.valuation.volume_ratio) if info.valuation.volume_ratio is not none else "—" }}
估值日期
{{ info.valuation.trade_date or "—" }}
单日主力净额
{{ "%.2f 万元"|format(info.moneyflow.net_amount) if info.moneyflow.net_amount is not none else "—" }}
近5日主力净额
{{ "%.2f 万元"|format(info.moneyflow.net_amount_5d) if info.moneyflow.net_amount_5d is not none else "—" }}
资金流日期
{{ info.moneyflow.trade_date or "—" }}
连续主力流入 / 流出
{{ info.moneyflow.inflow_days if info.moneyflow.inflow_days is not none else "—" }} / {{ info.moneyflow.outflow_days if info.moneyflow.outflow_days is not none else "—" }} 天
数据说明
缺失项未参与判断
{% endif %} {% endblock %} {% block scripts %} {% if info %} {% endif %} {% endblock %}