← 返回 Skills 市场
acwxpunh

Binance Event Contract Signal Calculator

作者 acwxpunh · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
226
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install binance-event-contract-signal
功能描述
Calculates multi-timeframe Binance Event Contract signals for BTCUSDT/ETHUSDT with detailed entries, targets, stop loss, confidence, and position sizing.
使用说明 (SKILL.md)

Binance Event Contract Signal Calculator

1. Scenario Definition

  • Trigger Timing: Auto-trigger every minute when new K-line data is available; also supports manual trigger via /binance-signal-calculate; 24/7 minute-level
  • Core Intent: Calculate 3-tier resonance signals (SSS/SS/S) for Binance Event Contract cycles using full data from fetcher and ICT recognizer; output precise Long Entry / Short Entry zones with entry price, target, and stop loss
  • Context: Works on BTCUSDT & ETHUSDT only; 10min/30min/1h Event Contract cycles; combines market data + liquidity + ICT structure for multi-factor resonance

2. Goal Setting

Generate 3-tier resonance signals with ≥90% win rate for SSS tier, ≥75% for SS tier; each signal includes: direction, entry zone, exact entry price, target price, stop loss, confidence score, cycle type, and position size recommendation.

3. Execution Rules

3.1 Signal Tier Classification

SSS Tier (Win Rate ≥ 95%):

  • All 3 timeframes aligned (10min + 30min + 1hICT structure confirmed)
  • Liquidity qualified (bid/ask ≥ 500,000 USDT both sides)
  • ICT Score ≥ 80/100
  • Volume confirmation (volume > 1.5x 20-period average)
  • 3+ confluence factors present

SS Tier (Win Rate ≥ 80%):

  • 2 timeframes aligned
  • Liquidity qualified on at least one side
  • ICT Score 60-79/100
  • 2 confluence factors present

S Tier (Win Rate ≥ 65%):

  • 1 timeframe confirmed
  • Basic ICT structure present
  • 1+ confluence factor

3.2 Resonance Strategy Rules

Multi-Timeframe Alignment:

  • 10min confirms direction + entry timing
  • 30min confirms structure + target
  • 1h confirms trend + stop loss placement

Confluence Factors:

  1. ICT Order Block at key level
  2. FVG not yet filled
  3. Liquidity sweep + reversal
  4. Index price at EMA 20/50/200 confluence
  5. Volume spike at structure break
  6. Contract cycle expiry timing (avoid expiry 5min before close)

3.3 Signal Output Format

【 SSS SIGNAL | BTCUSDT | 10min Event Contract | 12:10 UTC 】
Direction: Long Entry
Entry Zone: 67850-67920 USDT
Exact Entry: Wait for retest of 67880
Target 1: 68300 (+0.6%)
Target 2: 68500 (+0.9%)
Target 3: 68700 (+1.2%)
Stop Loss: 67500 (-0.5%)
Confidence: 96%
Confluence Factors: OB✓ FVG✓ Liquidity✓ Volume✓ ICT:88pts
Position Size: Max 5% of capital per signal
Risk/Reward: 1:2.4
Next Check: 12:15 UTC (5min close)

3.4 Data Input Dependency

  • K-line data: from binance-event-contract-data-fetcher
  • ICT structure: from binance-ict-recognizer
  • Risk parameters: from binance-event-contract-risk-manager

4. Example Output

✅ Positive Example

【 SSS SIGNAL | ETHUSDT | 30min Event Contract | 12:00 UTC 】
Direction: Short Entry
Entry Zone: 3845-3850 USDT
Exact Entry: 3847 (breakdown confirmation)
Targets: 3820 / 3800 / 3780
Stop Loss: 3870
Confidence: 94%
Confluence: OB✓ FVG✓ Liquidity✓ ICT:82pts
Cycle: 30min expiry at 12:30 UTC
Risk/Reward: 1:2.8

❌ Negative Example

  • Output signal with only 1 timeframe, no ICT confirm
  • Ignore liquidity data
  • Issue signal without stop loss

5. Boundary Definition

  • FORBIDDEN: Issue signal if liquidity \x3C 500,000 USDT on both sides
  • FORBIDDEN: Issue signal if ICT score \x3C 60 for SSS/SS tier
  • FORBIDDEN: Issue signals 5 minutes before contract expiry
  • Fallback: If data missing → output "Signal Pending" and wait

Installation

npx clawhub@latest install binance-event-contract-signal-calculator --dir /workspace/skills

Trigger Command

/binance-signal-calculate

安全使用建议
This skill describes a plausible trading-signal generator but is under-specified: it references three data components (data fetcher, ICT recognizer, risk manager) and needs orderbook/liquidity data that normally require exchange or data-provider credentials — yet the skill declares no dependencies or env vars. Before installing, confirm: (1) where the live K-line and orderbook data will come from and which component will supply it; (2) whether you must provide Binance API keys or a data-feed credential, and NEVER paste secret keys into general chat or to untrusted skills; (3) that the referenced helper skills (fetcher/recognizer/risk-manager) are available and vetted; (4) how the skill will act on signals (pure alerts vs. automated order placement); and (5) test in a read-only sandbox/backtest first — ignore bold claims of very high win rates without independent verification.
功能分析
Type: OpenClaw Skill Name: binance-event-contract-signal Version: 1.0.0 The skill bundle contains instructions for an AI agent to generate cryptocurrency trading signals for Binance Event Contracts based on technical analysis (ICT structure, liquidity, and volume). The logic is well-defined, lacks any indicators of data exfiltration, malicious execution, or prompt injection, and follows a modular design by referencing other data-fetching skills.
能力评估
Purpose & Capability
Name/description and SKILL.md consistently target Binance Event Contract signals for BTCUSDT/ETHUSDT. However, the skill explicitly depends on three external components (binance-event-contract-data-fetcher, binance-ict-recognizer, binance-event-contract-risk-manager) yet the skill metadata declares no dependencies, binaries, or required credentials. That omission makes the capability incomplete or under-specified.
Instruction Scope
Runtime instructions require minute-level K-line, orderbook/liquidity (bid/ask ≥ 500k USDT checks), ICT structure recognition, and risk parameters. The SKILL.md does not define how to obtain those feeds, which API(s) to call, or which component is responsible for credentials and network access. The doc also includes automated trigger behavior ('auto-trigger every minute') and fallback rules but leaves broad discretion to the agent — this vagueness could lead to the agent attempting to call unknown services or request credentials at runtime.
Install Mechanism
Instruction-only skill (no install spec in registry) — no code is written to disk by the skill itself. SKILL.md includes an npx clawhub install command which is a standard installer invocation; no downloads or extract instructions are embedded in the skill content.
Credentials
The skill requires detailed market data and orderbook liquidity checks that normally need exchange API access or a data provider (and therefore API keys or credentials), but the registry metadata lists no required env vars or primary credential. This gap is disproportionate/unexplained: either the skill depends on other preinstalled skills to supply the data (not declared), or it would need credentials at runtime (not declared).
Persistence & Privilege
Skill flags show always:false and normal autonomous invocation settings. The skill does not request system-wide persistence or modify other skills' configs in its instructions.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install binance-event-contract-signal
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /binance-event-contract-signal 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Binance Event Contract Signal Calculator v1.0.0 - Initial release: Calculates 3-tier (SSS/SS/S) resonance trading signals for BTCUSDT and ETHUSDT on Binance Event Contracts. - Auto and manual trigger supported; processes new K-line and ICT structure data at minute intervals. - Signals include direction, entries, targets, stop loss, confidence, cycle type, and position sizing. - Strict data and structure rules for each signal tier; multi-factor confluence required for higher tiers. - Prevents signals if liquidity is low, ICT score too low, or too close to contract expiry. - Integrates with dedicated fetcher, recognizer, and risk manager skills for input data.
元数据
Slug binance-event-contract-signal
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Binance Event Contract Signal Calculator 是什么?

Calculates multi-timeframe Binance Event Contract signals for BTCUSDT/ETHUSDT with detailed entries, targets, stop loss, confidence, and position sizing. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 226 次。

如何安装 Binance Event Contract Signal Calculator?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install binance-event-contract-signal」即可一键安装,无需额外配置。

Binance Event Contract Signal Calculator 是免费的吗?

是的,Binance Event Contract Signal Calculator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Binance Event Contract Signal Calculator 支持哪些平台?

Binance Event Contract Signal Calculator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Binance Event Contract Signal Calculator?

由 acwxpunh(@acwxpunh)开发并维护,当前版本 v1.0.0。

💬 留言讨论