a-fund-monitor

Featured

A股基金净值监控:盘中实时估值 + 盘后实际净值,定时推送到 Telegram。

AI & Automation 91 stars 23 forks Updated today MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
65
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# A股基金监控 A股基金净值监控,支持盘中实时估值和盘后实际净值,通过 OpenClaw cron 推送到 Telegram 私聊。 ## 架构 ``` fund_monitor.py (纯 Python,无外部依赖) ├── estimate 模式 → fundgz.1234567.com.cn (盘中实时估值) └── nav 模式 → api.fund.eastmoney.com/f10/lsjz (收盘净值) OpenClaw cron (isolated agentTurn) ├── 09:30-19:00 → estimate 模式(收盘后先推估值,净值当晚才公布) └── 19:00 之后 → nav 模式(收盘实际净值) └── stdout → delivery announce → Telegram 私聊 ``` **关键路径**: `skills/a-fund-monitor/scripts/`(本仓库) ## 手动执行 ```bash # 盘中估值(控制台输出) python3 scripts/fund_monitor.py estimate # 收盘净值(控制台输出) python3 scripts/fund_monitor.py nav ``` ## Cron 定时任务 OpenClaw cron,使用 **Asia/Shanghai** 时区。 | 北京时间 | 模式 | 数据源 | |---------|------|--------| | 10:30 | 盘中估值 | fundgz 接口 | | 12:30 | 盘中估值 | 同上 | | 14:30 | 盘中估值 | 同上 | | **22:00** | 收盘净值 | lsjz 接口(避开 20:30 数据未发布,QDII 滞后 1 天) | **合并为 1 个 cron job**: `04a185b2-f8ae-454e-b454-bc1944ca5c00` ``` Cron: 30 10,12,14,22 * * 1-5 (Asia/Shanghai) Runtime: isolated agentTurn (changqing) Model: minimax/MiniMax-M3 (fallback: deepseek/deepseek-v4-pro) Timeout: 300s Delivery: announce → telegram:8518085684 (Daniel 私聊) ``` **v2.1.1 (2026-06-22) 调整**:20:30 → 22:00。多数基金 21:00-22:30 才陆续发布 NAV,旧时间会拿到 4-5 天前的旧数据。同时叠加「今日过滤 + QDII 标记 + HTTP 重试」三重防护。 ### 模式判断逻辑 ``` 北京时间 ∈ [09:30, 19:00) → estimate 北京时间 ∈ [19:00, 次日) → nav ``` **投递目标**: `telegram:8518085684`(Daniel Li 私聊),accountId `changqing` ## 添加/删除基金 编辑 `fund_monitor.py` 中的 `FUNDS` 列表: ```python FUNDS = [ ("003304", "前海开源核心资源A"), # ... 添加 ("代码", "简称") ] `...

Details

Author
aAAaqwq
Repository
aAAaqwq/AGI-Super-Team
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

fund-copilot

为支付宝基金购买场景筛选、比较中国公募基金。适用于“选基金、支付宝买基金、基金定投、比较基金代码、宽基指数基金、债基”等请求,也支持从用户提供的支付宝自选/搜索页截图提取基金代码维护候选池。通过本地确定性脚本调用 AKShare 公开数据,输出基金代码、收益、回撤、波动、风险调整后评分和淘汰原因。不得登录支付宝、不得自动下单、不得承诺收益。

2 Updated 4 weeks ago
caredhieacid
AI & Automation Listed

invest-cli

投资分析 CLI — 数据获取 + 分析框架一体化,dual-mode 运行。 触发:「/cli」「/投资cli」「invest cli」「终端分析」「命令行分析」 或:「用cli分析」「终端查一下」「命令行看看」 命令入口:`invest-cli stock 600519`(PATH 无 invest-cli 时兜底:`python3 "$HOME/.agents/skills/invest-cli/scripts/invest_cli.py" stock 600519`)

18 Updated 1 weeks ago
taxueseek
AI & Automation Listed

stock-daily

投资笔记 v3 的唯一日更技能——复盘。当用户要求回顾最新交易日的盘面、主线、持仓或操作时使用,触发表达包括“复盘”“今日复盘”“收盘复盘”“看下今天”“今天盘面怎么样”,以及**不点名具体主线**的泛问“主线还活着吗”。在 A 股真实交易日收盘后,判定盘面环境、更新活跃主线状态、提名新主线候选、按纪律卡做持仓对照,写回当日盘面日志并留 git 快照。仅询问流程或讨论规则时不执行。不用于盘中分析、选股、买卖判断或定时任务。

2 Updated 3 weeks ago
Taosheng777