stock-monitor-skill全功能智能股票监控预警系统。支持成本百分比、均线金叉死叉、RSI超买超卖、成交量异动、跳空缺口、动态止盈等7大预警规则。符合中国投资者习惯(红涨绿跌)。
Install via ClawdBot CLI:
clawdbot install THIRTYFANG/stock-monitor-skill| 规则 | 触发条件 | 权重 |
|------|----------|------|
| 成本百分比 | 盈利+15% / 亏损-12% | ⭐⭐⭐ |
| 日内涨跌幅 | 个股±4% / ETF±2% / 黄金±2.5% | ⭐⭐ |
| 成交量异动 | 放量>2倍均量 / 缩量<0.5倍 | ⭐⭐ |
| 均线金叉/死叉 | MA5上穿/下穿MA10 | ⭐⭐⭐ |
| RSI超买超卖 | RSI>70超买 / RSI<30超卖 | ⭐⭐ |
| 跳空缺口 | 向上/向下跳空>1% | ⭐⭐ |
| 动态止盈 | 盈利10%+后回撤5%/10% | ⭐⭐⭐ |
{
"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% | 无 | 伦敦金 |
cd ~/workspace/skills/stock-monitor/scripts
./control.sh start # 启动
./control.sh status # 查看状态
./control.sh log # 查看日志
./control.sh stop # 停止
| 时间段 | 频率 | 监控标的 |
|--------|------|----------|
| 交易时间 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进入超卖区,关注反弹机会但勿急于抄底。
📢【提醒】🔴 中国平安 (601318)
━━━━━━━━━━━━━━━━━━━━
💰 当前价格: ¥70.50 (+6.8%)
📊 持仓成本: ¥66.00 | 盈亏: 🔴+6.8%
🎯 触发预警:
• 📉 利润回撤 5.2%,建议减仓保护利润
(最高盈利12%已回撤)
stock-monitor/
├── SKILL.md # 本文档
├── RULE_REVIEW_REPORT.md # 规则审核报告
└── scripts/
├── monitor.py # 核心监控 (7大规则)
├── monitor_daemon.py # 后台常驻进程
├── analyser.py # 智能分析引擎
└── control.sh # 一键控制脚本
"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, # 开启跳空
核心原则:
预警系统目标是"不错过大机会,不犯大错误",不是"抓住每一个波动"。
Generated Mar 1, 2026
Retail investors can use this skill to monitor their stock portfolios in real-time, setting personalized alerts for cost-based profit/loss thresholds, technical indicators like RSI and moving averages, and volume surges. It helps them avoid missing key market movements and manage risk effectively during trading hours.
Investors holding ETFs or gold assets can configure differentiated thresholds for intraday changes and volume alerts, tailored to each asset type. This allows for automated monitoring of diversified portfolios with specific risk parameters for different market segments.
Active traders can leverage the dynamic trailing stop feature to automatically alert on profit retracements after reaching certain gains. This helps in locking in profits and reducing emotional decision-making during volatile market conditions.
Financial analysts can use the skill to track multiple technical indicators simultaneously, such as moving average crossovers and gap patterns, providing real-time alerts for potential trend changes or entry/exit points in stocks.
For assets like gold that trade globally, the skill offers continuous monitoring with adjusted frequencies during non-trading hours and weekends. This ensures investors stay informed about price movements outside regular market hours.
Offer tiered subscription plans where users pay monthly or annually for access to advanced features like multi-condition resonance alerts, priority support, and detailed analytics reports. Revenue can scale with user base and feature usage.
Provide a free basic version with limited alerts and features, then monetize through in-app purchases for additional rules, higher frequency monitoring, or integration with brokerage APIs. This model attracts a broad user base and upsells power users.
License the skill to banks, brokerages, or fintech companies to embed into their platforms as a value-added service for clients. Revenue comes from licensing fees, customization contracts, and ongoing maintenance support.
💬 Integration Tip
Ensure backend processes run smoothly with proper error handling for market data feeds, and consider adding API endpoints for easy integration with existing trading platforms or mobile apps.
Automatically update Clawdbot and all installed skills once daily. Runs via cron, checks for updates, applies them, and messages the user with a summary of what changed.
Full desktop computer use for headless Linux servers. Xvfb + XFCE virtual desktop with xdotool automation. 17 actions (click, type, scroll, screenshot, drag,...
Essential Docker commands and workflows for container management, image operations, and debugging.
Tool discovery and shell one-liner reference for sysadmin, DevOps, and security tasks. AUTO-CONSULT this skill when the user is: troubleshooting network issues, debugging processes, analyzing logs, working with SSL/TLS, managing DNS, testing HTTP endpoints, auditing security, working with containers, writing shell scripts, or asks 'what tool should I use for X'. Source: github.com/trimstray/the-book-of-secret-knowledge
Deploy applications and manage projects with complete CLI reference. Commands for deployments, projects, domains, environment variables, and live documentation access.
Monitor topics of interest and proactively alert when important developments occur. Use when user wants automated monitoring of specific subjects (e.g., product releases, price changes, news topics, technology updates). Supports scheduled web searches, AI-powered importance scoring, smart alerts vs weekly digests, and memory-aware contextual summaries.