首页龙虾技能列表 › Smc Trading Signal — 技能工具

📈 Smc Trading Signal — 技能工具

v1.0.1

SMC 聪明钱交易信号监控,1H 定方向 +15M 入场,ATR 动态止盈止损。支持黄金/加密货币/外汇。

0· 102·0 当前·0 累计
by @zt6558609-cpu·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/24
安全扫描
VirusTotal
可疑
查看报告
OpenClaw
可疑
medium confidence
The skill largely matches its described trading-signal purpose, but there are a few implementation and metadata mismatches (an unexplained required binary 'uv', use of exec to run a local script, and TLS verification disabled on an external HTTP call) that warrant caution before installing.
评估建议
Things to check before installing: - Ask the maintainer why the skill metadata lists a required binary named 'uv' — it's not referenced by the scripts and may be a metadata mistake. - Inspect monitor_v2.py fully (it is executed via exec in monitor.py). Exec-ing a local file runs arbitrary code from the skill directory; confirm its contents are acceptable and review for hidden actions. - Note the scripts call external endpoints (hq.sinajs.cn and Yahoo). The Sina request disables TLS verification ...
详细分析 ▾
用途与能力
The skill claims to be a Python-based trading signal monitor — python3 is a reasonable requirement. However the declared required binary 'uv' is unexplained and not referenced in the scripts; this is an incoherence that should be justified or removed. Otherwise the files (monitor.py / monitor_v2.py, config/*.json) and described features match the stated purpose.
指令范围
SKILL.md tells the agent to run the included Python script and edit config files — that aligns with the purpose. Implementation details to note: monitor.py exec()'s the contents of monitor_v2.py (running code by reading+exec is riskier than a normal import), the scripts perform network requests to external data sources (sina/yahoo), and the sina request intentionally sets verify=False (disables TLS verification). The scripts write output files under the skill workspace. None of these actions contradict the stated purpose, but exec() and disabled TLS are implementation risks to review.
安装机制
There is no install spec (instruction-only install), which is the lowest installer risk. The package relies on Python libraries (requests, optional akshare) but does not declare or install them — the user will need to provide these. No remote downloads or installers are executed by the skill metadata itself.
凭证需求
The skill declares no required environment variables or credentials, which is appropriate for a read-only market-data signal generator. The scripts do perform outbound HTTP calls to public finance APIs (expected). There are no requests for unrelated credentials or system-level config paths.
持久化与权限
The skill does not request always:true or other elevated platform privileges. It does write signal files into its own workspace/output directory and suggests adding a cron job via openclaw — both are within expected behavior for a monitoring skill and do not appear to modify other skills or global agent settings.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.12026/3/24

- 新增 scripts/monitor_v2.py,加入第二版监控脚本。 - 更新 scripts/monitor.py,优化相关逻辑。 - 更新 README.md,反映新增和变化的脚本。

● 可疑

安装命令 点击复制

官方npx clawhub@latest install smc-trading-signal-cn
镜像加速npx clawhub@latest install smc-trading-signal-cn --registry https://cn.clawhub-mirror.com

技能文档

基于 SMC(Smart Money Concepts)聪明钱交易理念,自动监控市场信号并推送交易机会。

核心策略

📊 多时间周期分析

  • 1H(1 小时) - 确定趋势方向
- BULLISH(偏多)→ 只做多 - BEARISH(偏空)→ 只做空

  • 15M(15 分钟) - 精确入场点
- IFC 机构蜡烛确认 - SSL 流动性扫损 - CHOCH 趋势转变

💰 ATR 动态止盈止损

基于 15 分钟 ATR(平均真实波幅)动态计算:

项目计算方式
止损入场价 ± 1 × ATR
TP1入场价 ± 1.5 × ATR (1:1.5)
TP2入场价 ± 3 × ATR (1:3.0)
TP3入场价 ± 5 × ATR (1:5.0)
优势:
  • ✅ 自适应市场波动
  • ✅ 风险回报比合理
  • ✅ 避免固定点数的弊端

功能特点

  • 📈 多品种支持: 黄金/加密货币/外汇
  • 实时监控: 每小时自动检查
  • 🎯 精准信号: 1H 方向 + 15M 入场
  • 💡 教学模式: 解释每个信号的含义
  • 📊 回测数据: 历史信号统计

快速开始

1. 安装技能

clawhub install smc-trading-signal

2. 配置监控品种

编辑 config/symbols.json:

{
  "symbols": [
    {
      "name": "黄金",
      "code": "GC",
      "source": "akshare",
      "enabled": true
    },
    {
      "name": "比特币",
      "code": "BTCUSDT",
      "source": "binance",
      "enabled": true
    }
  ]
}

3. 设置推送

编辑 config/notify.json:

{
  "channels": ["qqbot", "wechat"],
  "min_risk_reward": 1.5,
  "max_signals_per_day": 5
}

4. 启用监控

# 手动测试
python3 scripts/monitor.py --test

# 启用定时任务(每小时) openclaw cron add smc-trading-signal --interval 60

输出示例

📈 SMC 交易信号 - 黄金 (GC)
⏰ 2026-03-24 16:30

【趋势分析】 ├ H1 趋势:BEARISH (看跌) ├ 当前价格:2156.80 └ 日内范围:2142.30 - 2168.90

【交易信号】做空 ├ 入场:2156.80 附近 ├ 止损:2142.30 (1 × ATR) ├ TP1: 2171.30 (1:1.5) ├ TP2: 2185.80 (1:3.0) └ TP3: 2200.30 (1:5.0)

【信号依据】

  • ✅ SSL 流动性扫损
H1 跌破前低,触发卖盘流动性
  • ✅ IFC 机构蜡烛
15M 大阴线,成交量放大

【风险提示】 ⚠️ 风险回报比:1:3.0 ⚠️ 建议仓位:总资金 2-3% ⚠️ 严格执行止损


💡 SMC 策略 | H1 定方向 + 15M 入场 | ATR 动态风控

配置说明

时间周期配置

{
  "trend_timeframe": "1H",
  "entry_timeframe": "15M",
  "check_interval_minutes": 60
}

ATR 配置

{
  "atr_period": 14,
  "stop_loss_atr": 1.0,
  "take_profit_levels": [1.5, 3.0, 5.0]
}

风险控制

{
  "max_position_size": 0.03,
  "daily_loss_limit": 0.05,
  "min_risk_reward": 1.5
}

SMC 术语解释

术语含义
IFCInstitutional Fair Candle,机构公平蜡烛
SSLSell Side Liquidity,卖方流动性
BSLBuy Side Liquidity,买方流动性
CHOCHChange of Character,趋势转变
OBOrder Block,订单块
FVGFair Value Gap,公允价值缺口

适用市场

市场推荐说明
黄金 (XAU/USD)✅ 强烈推荐波动适中,SMC 信号清晰
比特币✅ 推荐高波动,需调整 ATR 系数
外汇主要货币对✅ 推荐EUR/USD, GBP/USD 等
原油⚠️ 谨慎地缘政治影响大
股票❌ 不推荐不适合 SMC 策略

常见问题

Q: 信号频率是多少? A: 每小时检查一次,平均每天 2-5 个信号。

Q: 准确率如何? A: SMC 策略胜率约 55-65%,但风险回报比高(1:3+)。

Q: 需要手动执行吗? A: 是的,信号仅供参考,需自行判断执行。

Q: 可以自动交易吗? A: 暂不支持,建议手动执行以确保风控。

风险提示

⚠️ 重要声明:

  • 本技能提供的信号仅供参考,不构成投资建议
  • 交易有风险,入市需谨慎
  • 请严格执行止损,控制仓位
  • 过往表现不代表未来收益

更新日志

v1.0.0 (2026-03-24)

  • ✅ 首次发布
  • ✅ 1H+15M 多周期分析
  • ✅ ATR 动态止盈止损
  • ✅ 黄金/加密货币支持

许可证

MIT License

反馈

GitHub: https://github.com/zt6558609-cpu/smc-trading-signal


交易有风险,请理性投资! 📉📈

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务