Summary
股票价格实时监控。支持多只股票监控,使用 Yahoo Finance API 获取实时股价,自定义涨跌阈值提醒。当股价波动超过设定阈值时自动发送提醒,支持首次预警和续警机制。用于:(1) 监控持仓股票价格波动 (2) 设置价格提醒 (3) 定期检查股价变化
oldhouse-g/openclaw-skills · Archived
股票价格实时监控。支持多只股票监控,使用 Yahoo Finance API 获取实时股价,自定义涨跌阈值提醒。当股价波动?
npx skills add oldhouse-g/openclaw-skills --skill stock-monitor
股票价格实时监控。支持多只股票监控,使用 Yahoo Finance API 获取实时股价,自定义涨跌阈值提醒。当股价波动超过设定阈值时自动发送提醒,支持首次预警和续警机制。用于:(1) 监控持仓股票价格波动 (2) 设置价格提醒 (3) 定期检查股价变化
This repository is archived — consider an actively maintained alternative.
Multi-source deep research agent. Searches the web, synthesizes findings, and delivers cited re…
7 installsA股股票估值分析工?
2 installs获取中国金融市场数据(A股、港股、美股、基金、期货、债券)。支持220+个Tushare Pro接口:股票行?
2 installs物理科学动图生成器。用于生成知乎等平台的物理/数学科普?
2 installsRelated neighbors and high-traction skills in the same topics — useful to compare before installing.
Alert by webhook/email on web changes — use for "monitor/watch/track/alert me when": recurring …
31.8K installsContinuously track the web for changes on a recurring cadence.
10.8K installsInstalls, configures, and troubleshoots Network Flow Monitor agents on EC2 instances to monitor…
3.2K installsSetup Sentry AI Agent Monitoring in any project. Use when asked to monitor LLM calls, track AI …
2.8K installsTrack reviews, ratings, sentiment, and brand mentions across Google Maps, Booking.com, TripAdvi…
2.5K installsBuild macroeconomic and rates dashboards combining macro indicators, yield curves, inflation br…
2.1K installsOther skills from oldhouse-g/openclaw-skills.
npx skills add oldhouse-g/openclaw-skills
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Files included with this skill beyond the listing page.
SKILL.md
2,045 B
SUMMARY.md
339 B
实时监控多只股票价格,当波动超过阈值时自动提醒。
创建配置文件 ~/.openclaw/workspace/memory/stocks_config.json:
{
"stocks": {
"贵州茅台": {"symbol": "600519.SS", "base_price": 1600.0, "currency": "¥"},
"腾讯控股": {"symbol": "0700.HK", "base_price": 512.0, "currency": "HK$"},
"拼多多": {"symbol": "PDD", "base_price": 120.0, "currency": "$"}
}
}
配置说明:
symbol: Yahoo Finance 股票代码- A股: 600519.SS (茅台) - 港股: 0700.HK (腾讯) - 美股: PDD (拼多多), AAPL (苹果)
base_price: 基准价(昨日收盘或参考价)currency: 货币符号python3 ~/.openclaw/skills/stock-monitor/scripts/stocks_monitor.py
# 每5分钟检查一次
openclaw cron add --name "股票监控" --cron "*/5 * * * *" --tz "Asia/Shanghai" --message "运行 python3 ~/.openclaw/workspace/skills/stock-monitor/scripts/stocks_monitor.py 并把输出发给我" --channel discord
| 股票 | 港股代码 | 美股代码 |
|---|---|---|
| 腾讯控股 | 0700.HK | TCEHY |
| 阿里巴巴 | 9988.HK | BABA |
| 美团 | 3690.HK | MPNG |
| 小米 | 1810.HK | XI |
| 茅台 | - | 600519.SS |
脚本会自动在 ~/.openclaw/workspace/memory/stocks_alert.json 保存监控状态,包括是否已预警、预警日期等。