📊 自选股看板

价差=(可买入 - 当前价)÷当前价

数量
{{ stockList.length }}
🔴涨
{{ upCount }}
🟢跌
{{ downCount }}
✅买
{{ buyableCount }}
⏳等
{{ waitingCount }}
股票 代码 可买入价 当前价 价差% 涨跌幅 成交量 最高/最低 K线
{{ stock.name }} {{ stock.displayCode }} {{ formatPrice(stock.canBuy) }} {{ formatPrice(stock.current) }} {{ stock.priceDiff >= 0 ? '+' : '' }}{{ stock.priceDiff.toFixed(2) }}% {{ stock.percent >= 0 ? '+' : '' }}{{ stock.percent.toFixed(2) }}% {{ formatVolume(stock.volume) }} {{ formatPrice(stock.high) }}/{{ formatPrice(stock.low) }} 查看K线
{{ stock.name }}
{{ stock.displayCode }}
{{ formatPrice(stock.current) }}
{{ stock.change >= 0 ? '+' : '' }}{{ stock.change.toFixed(2) }}
{{ stock.percent >= 0 ? '+' : '' }}{{ stock.percent.toFixed(2) }}% 价差 {{ stock.priceDiff >= 0 ? '+' : '' }}{{ stock.priceDiff.toFixed(2) }}%
可买:{{ formatPrice(stock.canBuy) }}
量:{{ formatVolume(stock.volume) }}
高:{{ formatPrice(stock.high) }} 低:{{ formatPrice(stock.low) }}
价差>0:可关注 价差<0:建议等待 📈 点击股票查看 K 线图

{{ selectedStock?.name }} ({{ selectedStock?.displayCode }})

当前价:{{ formatPrice(selectedStock?.current) }} | 价差:{{ selectedStock?.priceDiff?.toFixed(2) }}%

📊 加载中...
{{ klineError }}