/install clap-trader
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.
Workflow
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 tologs/analysis_journal.md.scripts/trade.py: Executes trades and logs tologs/trade_history.csv.logs/: Directory storing your analysis history and trade logs.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clap-trader - 安装完成后,直接呼叫该 Skill 的名称或使用
/clap-trader触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Clap Trader 是什么?
A skill for OpenClaw to research crypto market trends (technical & sentiment) and trade ETH on Binance. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 792 次。
如何安装 Clap Trader?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clap-trader」即可一键安装,无需额外配置。
Clap Trader 是免费的吗?
是的,Clap Trader 完全免费(开源免费),可自由下载、安装和使用。
Clap Trader 支持哪些平台?
Clap Trader 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Clap Trader?
由 dymx101(@dymx101)开发并维护,当前版本 v1.0.0。