โ† All skills
Tencent SkillHub ยท Developer Tools

Clap Trader

A skill for OpenClaw to research crypto market trends (technical & sentiment) and trade ETH on Binance.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

A skill for OpenClaw to research crypto market trends (technical & sentiment) and trade ETH on Binance.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/trade.py, scripts/logger.py, scripts/market_data.py, scripts/sentiment_data.py, logs/analysis_journal.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Crypto Trader & Analyst Skill

This skill allows OpenClaw to analyze the crypto market using technical indicators and news sentiment, record its findings, and execute trades on Binance.

Dependencies

Ensure the following Python packages are installed: pip install ccxt pandas pandas-ta requests TextBlob Note: TextBlob is suggested for basic sentiment analysis if needed, though simple keyword matching might suffice.

Environment Variables

You must set the following environment variables for trading: BINANCE_API_KEY: Your Binance API Key. BINANCE_API_SECRET: Your Binance API Secret. WARNING: Never share these keys or commit them to version control.

1. Market Analysis

Technical Analysis Run the market data script to get current indicators for a symbol (default ETH/USDT). python skills/crypto_trader/scripts/market_data.py --symbol ETH/USDT Output: JSON containing RSI, MACD, close price, etc. Sentiment Analysis Run the sentiment script to fetch latest news headers and forum buzz. python skills/crypto_trader/scripts/sentiment_data.py Output: Text/JSON summary of positive/negative news.

2. Decision Making & Logging

Analyze & Record Based on the outputs from step 1, form a hypothesis. Is the market Bullish, Bearish, or Neutral? Before trading, you MUST save your analysis. python skills/crypto_trader/scripts/logger.py "Your detailed analysis here. E.g., RSI is 30 (oversold) and news is positive. Planning to BUY."

3. Execution

Trade If the analysis supports a trade, execute it. # Buy 0.01 ETH at Market Price python skills/crypto_trader/scripts/trade.py --symbol ETH/USDT --side buy --amount 0.01 --type market # Dry Run (Test without real money) python skills/crypto_trader/scripts/trade.py --symbol ETH/USDT --side buy --amount 0.01 --dry-run The trade script will automatically append the transaction to skills/crypto_trader/logs/trade_history.csv.

Files structure

scripts/market_data.py: Fetches OHLCV and calculates indicators. scripts/sentiment_data.py: Fetches news/forum data. scripts/logger.py: Appends analysis to logs/analysis_journal.md. scripts/trade.py: Executes trades and logs to logs/trade_history.csv. logs/: Directory storing your analysis history and trade logs.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Scripts2 Docs
  • SKILL.md Primary doc
  • logs/analysis_journal.md Docs
  • scripts/logger.py Scripts
  • scripts/market_data.py Scripts
  • scripts/sentiment_data.py Scripts
  • scripts/trade.py Scripts