A股T+0基金5分钟级别买卖监控

v1.0.0

T+0 基金 5 分钟级别实时监控,支持批量代码输入,自动生成买入/卖出信号。 **触发场景:** - "监控基金 XXX" - "开始监控这些代码:xxx, xxx, xxx" - "添加 XXX 到监控列表" - "查看监控信号" - "停止监控 XXX" 支持场内 ETF、跨境 QDII、债券 ETF 等...

0· 182·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for newhackerman/t0-fund-monitor.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "A股T+0基金5分钟级别买卖监控" (newhackerman/t0-fund-monitor) from ClawHub.
Skill page: https://clawhub.ai/newhackerman/t0-fund-monitor
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: python3, pip3
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install t0-fund-monitor

ClawHub CLI

Package manager switcher

npx clawhub@latest install t0-fund-monitor
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The code, CLI, config, and notifier match the described purpose (real-time fund monitoring, indicator calculation, signal generation, optional webhook notifications). One small mismatch: several modules (indicators.py, health_check.sh) import or reference TA-Lib (talib), but the SKILL metadata and requirements.txt do not list TA-Lib explicitly; install.sh tries to install TA-Lib and falls back to instructions for system packages. This looks like an author oversight rather than malicious intent, but it is a functional inconsistency you should be aware of.
Instruction Scope
SKILL.md and the CLI instructions direct the agent/user to run the included monitor scripts, edit the skill's config, and manage the watchlist. At runtime the code only reads/writes files under the skill directory (~/.openclaw/skills/fund-monitor), fetches market data from public finance endpoints (sina, qt.gtimg, akshare/eastmoney), and sends notifications to user-configured webhooks (DingTalk/WeChat) or terminal. There are no instructions to read unrelated system files or arbitrary environment variables.
Install Mechanism
There is no remote, arbitrary binary download; installation relies on pip installs and an included install.sh. The pip packages are sensible for this use case (akshare, pandas, requests, APScheduler, pyyaml). The install.sh attempts to install TA-Lib which may require system-level libraries (libta-lib-dev) and can fail; it does not download code from obscure hosts. Recommend running install.sh in a controlled environment (or installing dependencies manually) because TA-Lib can be tricky to build.
Credentials
The skill requests no environment variables and declares no credentials. Optional notification webhooks/keys are stored in the skill's config file (config/default.yaml) — that is expected. There are no hidden credential collection steps, and network calls are limited to public market data endpoints and user-configured notification webhooks.
Persistence & Privilege
The skill writes its own files under ~/.openclaw/skills/fund-monitor (config, data, logs), creates a PID file, and runs as a normal user process. always is false and the skill does not modify other skills or system-wide settings. This level of persistence is proportionate for a monitoring tool.
Assessment
This skill appears to do what it claims (fund monitoring and signal generation). Before installing: 1) Be prepared to install TA-Lib system libraries (install.sh attempts to install TA-Lib but requirements.txt doesn't list it) — run in a VM/container if you want to limit system changes. 2) Review and set notify.dingtalk.webhook and notify.wechat.key only if you trust the destination; those webhooks will receive signal content. 3) The code fetches data from public finance endpoints (sina, qt.gtimg, akshare/eastmoney) — if you need to restrict outbound network access, run it in a sandbox. 4) Consider pinning dependency versions and installing into a virtualenv. 5) Inspect log/data files (~/.openclaw/skills/fund-monitor/data and logs) after first runs to confirm behavior. If you want higher assurance, ask the author to add TA-Lib to requirements.txt or remove the build attempt from install.sh and provide clear installation notes.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

📊 Clawdis
Binspython3, pip3
latestvk97792dbhh1eqhbkhh68vaktz1835133
182downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Fund Monitor Skill

T+0 基金 5 分钟级别实时监控系统。

快速开始

1. 安装依赖

pip3 install akshare pandas pandas-ta APScheduler requests pyyaml

2. 配置通知(可选)

编辑 ~/.openclaw/skills/fund-monitor/config/default.yaml

3. 开始监控

# 添加基金到监控列表
~/.openclaw/skills/fund-monitor/tools/monitor.py add 512880,513050,159915

# 查看监控列表
~/.openclaw/skills/fund-monitor/tools/monitor.py list

# 启动监控
~/.openclaw/skills/fund-monitor/tools/monitor.py start

# 查看最新信号
~/.openclaw/skills/fund-monitor/tools/monitor.py signals

# 停止监控
~/.openclaw/skills/fund-monitor/tools/monitor.py stop

命令行接口

命令说明示例
add <codes>添加基金到监控列表add 512880,513050
list查看监控列表list
start启动监控start
stop停止监控stop
signals查看最新信号signals
remove <code>移除基金remove 512880
status查看监控状态status

信号策略

买入信号(同时满足)

  • MACD 金叉(DIF 上穿 DEA)
  • KDJ < 20(超卖区)
  • 成交量 > 5 日均量 1.5 倍

卖出信号(满足任一)

  • MACD 死叉(DIF 下穿 DEA)
  • KDJ > 80(超买区)
  • 跌破 5 日均线 2%

注意事项

⚠️ 数据有 1-5 分钟延迟,不构成投资建议

Comments

Loading comments...