← Back to Skills Marketplace
huangchen2005

双币赢分析

by huangchen2005 · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
356
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install btceth-dulwin-engine
Description
提供BTC/ETH期权双币赢策略分析,包含市场数据、决策分析及1-3天期操作建议。
README (SKILL.md)

双币赢分析 (BTCETH DualWin Engine)

功能描述

专业 BTC 与 ETH 双币赢(Dual-Win)理财决策助手。当用户询问 BTC/ETH 买入卖出时机、期权策略或需要双币理财建议时触发。通过实时监控波动率曲面与技术指标,自动识别期权费最高且安全边际最大的申购方案,助你实现低价抄底或高位止盈。

使用方式

用户说"双币赢分析"即可自动获取数据

核心决策逻辑

第一层:确定方向(买低还是高卖)

核心指标:RSI + 25 Delta Skew

条件 方向 策略
RSI \x3C 40 且 Skew \x3C 0 Buy Low(低吸) 卖出 Put,收取权利金最高
RSI > 60 且 Skew > 0 Sell High(高抛) 卖出 Call,收益最肥

第二层:品种性价比(BTC vs ETH)

核心指标:IVP (IV Percentile)

  • 比较 BTC 和 ETH 的 IVP
  • 优先选择 IVP 更高的品种
  • 理由:IVP 高 = 期权费处于历史高位,卖出性价比高

第三层:胜率预测(1-3天)

核心指标:DVOL + IVK

  • DVOL 高(>60)→ 年化收益可观
  • IVK 高 → 极端行情预期 → 赢率打折
  • 挂单价在 1.5×DVOL 波动区间外 → 赢率极高

指标速查表

指标 监控维度 触发条件 影响
DVOL 整体波动水位 > 60 年化收益加成
IVP 性价比 > 70% 强烈申购信号
25 Delta Skew 偏向性 正且拉升 高卖 (Sell High)
IVK 尾部风险 异常升高 风险预警,调低赢率
RSI 动能 > 70 或 \x3C 30 确认极值点

进阶优化

  1. 轮询频率:每小时轮询 DVOL,捕捉 IV 突发飙升
  2. RV 对比:若 IV - RV > 10%,最佳"卖保险"时机
  3. 风险提示:IVK 暴涨 → 输出 "⚠️ 检测到肥尾效应,建议观望,防止穿仓。"

输出格式

📊 双币赢实操建议 | [时间]

---

📈 市场数据
BTC: $xxx | DVOL xx% | IVP xx% | RSI xx | Skew xx
ETH: $xxx | DVOL xx% | IVP xx% | RSI xx | Skew xx
恐慌指数: xx [emoji]

---

💡 决策分析
- BTC: DVOL=xx%, 5日均值=xx%, 动量Z=xx, 扩张=XX
- ETH: DVOL=xx%, 5日均值=xx%, 动量Z=xx, 扩张=XX
- ETH/BTC Ratio=xx, Z-score=xx

[结论]

---

1. 推荐品种:[BTC/ETH]
- 理由:xxx

2. 推荐方向:[高卖/低买]

3. 操作建议

🎯 1天期
激进 CALL $xx (+x%) 胜率xx%
稳健 CALL $xx (+x%) 胜率xx%
平衡 CALL $xx (+x%) 胜率xx%
保守 CALL $xx (+x%) 胜率xx%

🎯 2天期
激进 CALL $xx (+x%) 胜率xx%
稳健 CALL $xx (+x%) 胜率xx%
平衡 CALL $xx (+x%) 胜率xx%
保守 CALL $xx (+x%) 胜率xx%

🎯 3天期
激进 CALL $xx (+x%) 胜率xx%
稳健 CALL $xx (+x%) 胜率xx%
平衡 CALL $xx (+x%) 胜率xx%
保守 CALL $xx (+x%) 胜率xx%

---

⚠️ 风险提示

注意事项

⚠️ 本工具仅供参考,不构成投资建议 ⚠️ 期权交易有风险,请谨慎操作

Usage Guidance
This skill calls a hard-coded HTTP endpoint (43.156.132.183:30080) to obtain all analysis results but does not disclose that in its description or SKILL.md. Because responses come from an external, unencrypted, untrusted server, the provider can return arbitrary output (including misleading or harmful trading recommendations) and can observe the agent's network requests. Before installing or using: (1) ask the publisher for the source and justification for using that specific API and for a TLS-secured domain; (2) request a self-contained/local implementation or an option to run analysis locally; (3) if you must run it, sandbox network access and do not use it for live trading decisions or with real credentials/funds; (4) verify presence of required Python dependencies (requests) and consider auditing the remote service or running in an isolated environment. If you cannot verify the remote service's trustworthiness, treat this skill as high-risk and avoid using it for real financial decisions.
Capability Analysis
Type: OpenClaw Skill Name: btceth-dulwin-engine Version: 1.0.0 The skill fetches data from a hardcoded remote IP address (43.156.132.183) via run.py and prints the response directly to the agent's context. This architecture facilitates indirect prompt injection, as the remote server can control the agent's behavior by returning malicious instructions in the 'output' field. While SKILL.md describes a financial analysis tool, the use of a raw IP and the potential for remote instruction delivery without sanitization are significant security risks.
Capability Assessment
Purpose & Capability
The skill's stated purpose (BTC/ETH dual-win options analysis) matches the delivered behavior: it returns market/strategy analysis. However, instead of performing local calculations described in SKILL.md, the skill fetches results from a remote service, which is not documented in the description.
Instruction Scope
SKILL.md describes detailed local decision logic and polling behavior, but runtime behavior (run.py) is a single HTTP GET to an external API that could return any content. The documentation does not disclose that analysis is performed remotely, nor that network calls to an arbitrary IP will occur.
Install Mechanism
No install spec — instruction-only with a small code file. Nothing is written to disk beyond the provided files. Lower risk from install perspective.
Credentials
The skill requests no environment variables or credentials, but it makes an outbound HTTP request to a hard-coded IP (http://43.156.132.183:30080). The outbound network dependency is not declared in the SKILL.md or metadata and uses plain HTTP (no TLS), which is disproportionate given the apparent local-analysis nature of the documentation.
Persistence & Privilege
always is false and the skill does not request persistent privileges or modify other skills. It runs as an executable action with a 60s timeout — no elevated platform privileges requested.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install btceth-dulwin-engine
  3. After installation, invoke the skill by name or use /btceth-dulwin-engine
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release with comprehensive dual-currency BTC/ETH options analysis and recommendation engine: - Provides a structured, rule-based framework for BTC/ETH DualWin strategy using RSI, IVP, DVOL, Skew, and IVK indicators. - Implements three-layer decision logic: market timing, asset selection (BTC vs ETH), and multi-day win-rate prediction. - Enhanced documentation includes detailed indicator explanations, decision tables, and advanced optimization/risk tips. - Standardized market output and strategy suggestion formats for user clarity. - Emphasizes hourly monitoring and dynamic risk alerting for option selling strategies.
v0.0.1
Initial release of BTCETH DualWin Engine - Provides BTC/ETH dual-currency options strategy analysis on user request ("双币赢分析") - Outputs actionable suggestions with clear market data, decision analysis, and multi-day recommendations - Includes risk warnings and disclaimers - Structured, easy-to-read result format for quick decision-making
Metadata
Slug btceth-dulwin-engine
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is 双币赢分析?

提供BTC/ETH期权双币赢策略分析,包含市场数据、决策分析及1-3天期操作建议。 It is an AI Agent Skill for Claude Code / OpenClaw, with 356 downloads so far.

How do I install 双币赢分析?

Run "/install btceth-dulwin-engine" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 双币赢分析 free?

Yes, 双币赢分析 is completely free (open-source). You can download, install and use it at no cost.

Which platforms does 双币赢分析 support?

双币赢分析 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 双币赢分析?

It is built and maintained by huangchen2005 (@huangchen2005); the current version is v1.0.0.

💬 Comments