15910701838/jarvis-stock-monitor/SKILL.md
全功能智能股票监控预警系统 Pro 版。支持成本百分比、均线金叉死叉、RSI 超买超卖、成交量异动、跳空缺口、动态止盈等 7 大预警规则。基础功能免费,高级功能 SkillPay 付费。
npx skillsauth add openclaw/skills jarvis-stock-monitorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| 规则 | 触发条件 | 权重 | |------|----------|------| | 成本百分比 | 盈利 +15% / 亏损 -12% | ⭐⭐⭐ | | 日内涨跌幅 | 个股±4% / ETF±2% / 黄金±2.5% | ⭐⭐ | | 成交量异动 | 放量>2 倍均量 / 缩量<0.5 倍 | ⭐⭐ | | 均线金叉/死叉 | MA5 上穿/下穿 MA10 | ⭐⭐⭐ | | RSI 超买超卖 | RSI>70 超买 / RSI<30 超卖 | ⭐⭐ | | 跳空缺口 | 向上/向下跳空>1% | ⭐⭐ | | 动态止盈 | 盈利 10%+ 后回撤 5%/10% | ⭐⭐⭐ |
| 套餐 | 价格 | 说明 | |------|------|------| | 单次查询 | ¥0.01 | 按次付费,适合偶尔使用 | | 包月订阅 | ¥99 | 无限次使用,适合活跃交易者 |
{
"code": "600362",
"name": "江西铜业",
"type": "individual", # 个股
"market": "sh",
"cost": 57.00, # 持仓成本
"alerts": {
# 1. 成本百分比
"cost_pct_above": 15.0, # 盈利 15% 提醒 (¥65.55)
"cost_pct_below": -12.0, # 亏损 12% 提醒 (¥50.16)
# 2. 日内涨跌幅 (个股±4%)
"change_pct_above": 4.0,
"change_pct_below": -4.0,
# 3. 成交量异动
"volume_surge": 2.0, # 放量>2 倍 5 日均量
# 4-7. 技术指标 (付费功能)
"ma_monitor": True, # 均线金叉死叉
"rsi_monitor": True, # RSI 超买超卖
"gap_monitor": True, # 跳空缺口
"trailing_stop": True # 动态止盈
}
}
| 类型 | 日内异动阈值 | 成交量阈值 | 适用标的 | |------|-------------|-----------|----------| | individual (个股) | ±4% | 2 倍 | 江西铜业、中国平安 | | etf (ETF) | ±2% | 1.8 倍 | 恒生医疗、创 50 等 | | gold (黄金) | ±2.5% | 无 | 伦敦金 |
clawhub install stock-monitor-pro
cd ~/.openclaw/workspace/skills/stock-monitor-pro/scripts
cp config.example.py config.py
# 编辑 config.py 填入你的持仓和成本价
# 后台常驻进程
./control.sh start
# 查看状态
./control.sh status
# 查看日志
./control.sh log
| 时间段 | 频率 | 监控标的 | |--------|------|----------| | 交易时间 9:30-15:00 | 每 5 分钟 | 全部 + 技术指标 | | 午休 11:30-13:00 | 每 10 分钟 | 全部 | | 收盘后 15:00-24:00 | 每 30 分钟 | 全部 (日线数据) | | 凌晨 0:00-9:30 | 每 1 小时 | 仅伦敦金 | | 周末 | 每 1 小时 | 仅伦敦金 |
🚨【紧急】🔴 江西铜业 (600362)
━━━━━━━━━━━━━━━━━━━━
💰 当前价格:¥65.50 (+15.0%)
📊 持仓成本:¥57.00 | 盈亏:🔴+14.9%
🎯 触发预警 (3 项):
• 🎯 盈利 15% (目标价 ¥65.55)
• 🌟 均线金叉 (MA5¥63.2 上穿 MA10¥62.8)
• 📊 放量 2.5 倍 (5 日均量)
📊 江西铜业 深度分析
💰 价格异动:
• 当前:65.5 (+15.0%)
• Ma 趋势:MA5>MA10>MA20 [多头排列]
• RSI: 68 [接近超买]
💡 Kimi 建议:
🚀 多条件共振,趋势强劲,可考虑继续持有或分批减仓。
⚠️【警告】🟢 恒生医疗 (159892)
━━━━━━━━━━━━━━━━━━━━
💰 当前价格:¥0.72 (-10.0%)
📊 持仓成本:¥0.80 | 盈亏:🟢-10.0%
🎯 触发预警 (2 项):
• 📉 日内大跌 -10.0%
• ❄️ RSI 超卖 (28.5),可能反弹
💡 Kimi 建议:
🔍 短期超跌严重,RSI 进入超卖区,关注反弹机会但勿急于抄底。
stock-monitor-pro/
├── SKILL.md # 本文档
├── README.md # 快速开始指南
├── _meta.json # ClawHub 元数据
├── .clawhub/ # ClawHub 配置
│ └── origin.json
└── scripts/
├── monitor.py # 核心监控 (7 大规则)
├── monitor_daemon.py # 后台常驻进程
├── analyser.py # 智能分析引擎
├── control.sh # 一键控制脚本
└── config.example.py # 配置模板
"cost": 55.50, # 改成你的实际成本
"cost_pct_above": 20.0, # 盈利 20% 提醒
"cost_pct_below": -15.0, # 亏损 15% 提醒
"change_pct_above": 5.0, # 日内异动±5%
"volume_surge": 3.0, # 放量 3 倍提醒
"ma_monitor": False, # 关闭均线
"rsi_monitor": True, # 开启 RSI
"gap_monitor": True, # 开启跳空
核心原则:
预警系统目标是"不错过大机会,不犯大错误",不是"抓住每一个波动"。
付费说明:
基础价格监控完全免费!付费功能主要是技术指标和智能分析,适合需要深度分析的用户。
tools
Use when the user wants to connect to, test, or use the McDonalds service at mcp.mcd.cn, including checking authentication, probing MCP endpoints, listing tools, or calling McDonalds MCP tools through a reusable local CLI.
development
Web scraping platform — Twitter/X data, Vinted marketplace, and general web scraping API
development
SlowMist AI Agent Security Review — comprehensive security framework for skills, repositories, URLs, on-chain addresses, and products (Claude Code version)
data-ai
去除中文文本中的 AI 写作痕迹,使其读起来自然。基于维基百科 AI 写作特征指南,检测 24 种 AI 模式。触发词:humanizer-cn、去除 AI 痕迹、去除 AI 写作痕迹、中文文本人性化。