Install
$ agentstack add skill-atorber-qmt-trading-skill-qmt-bridge-realtime-monitor ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
QMT Trading Skill · 实时监控
> 实现状态:✅ ws_subscribe.py + WebSocket 规程
目标
规范 WebSocket 使用方式,避免 Agent 随意长连或泄露 Key。
WebSocket 端点
| 路径 | 用途 | 认证 | |------|------|------| | /ws/realtime | 实时行情 | 无 | | /ws/whole_quote | 全市场 | 无 | | /ws/l2_thousand | L2 千档 | 无 | | /ws/formula | 公式推送 | 无 | | /ws/download_progress | 下载进度 | 无 | | /ws/trade | 交易回报 | ?api_key= |
详见 docs/websocket.md。
规程(规划)
- 订阅前
health+ 明确订阅代码列表 - 交易回报:
/ws/trade与GET /api/trading/orders定期对账 - 突破提醒:在客户端聚合 tick,不把全量 L2 dump 给 LLM
- 断线重连:指数退避;记录最后 seq/时间
- 停止订阅:明确
unsubscribe或关闭连接
规划脚本(可选)
| 脚本 | 作用 | |------|------| | scripts/ws_subscribe.py | CLI 示例:订阅 codes 并打印摘要 N 秒 |
安全
/ws/trade的 api_key 勿写入日志- 监控不等于自动下单
参考
- [qmt-bridge-technical-signal](../qmt-bridge-technical-signal/SKILL.md)
- [qmt-bridge-order-ops](../qmt-bridge-order-ops/SKILL.md)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: atorber
- Source: atorber/qmt-trading-skill
- License: MIT
- Homepage: https://atorber.github.io/qmt-trading-skill/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.