← Back to Skills Marketplace
acwxpunh

Binance Event Contract Signal Calculator

by acwxpunh · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
226
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install binance-event-contract-signal
Description
Calculates multi-timeframe Binance Event Contract signals for BTCUSDT/ETHUSDT with detailed entries, targets, stop loss, confidence, and position sizing.
README (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

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install binance-event-contract-signal
  3. After installation, invoke the skill by name or use /binance-event-contract-signal
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug binance-event-contract-signal
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 226 downloads so far.

How do I install Binance Event Contract Signal Calculator?

Run "/install binance-event-contract-signal" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Binance Event Contract Signal Calculator free?

Yes, Binance Event Contract Signal Calculator is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Binance Event Contract Signal Calculator support?

Binance Event Contract Signal Calculator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Binance Event Contract Signal Calculator?

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

💬 Comments