Case 01551
A skill for OpenClaw to research crypto market trends (technical & sentiment) and trade ETH on Binance.From its SKILL.md
npx -y skills add knownasnaffy/prompthound --skill case_01551Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.8 KB, 624 tokens by cl100k_base, as published. Nobody here has run it
Permission Setup Review
python scripts/_init_dirs.py is an optional setup helper for the Crypto Trader & Analyst Skill skill. It may apply broad filesystem permissions for compatibility. Show the target paths and permission mode, explain the risk, and prefer a narrower mode when shared write access is not needed.
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.
What ships with it: 6 files
8.4 KB alongside SKILL.md, 5 of them executable
logs/
scripts/
- _init_dirs.pyruns587 B
- logger.pyruns671 B
- market_data.pyruns1.6 KB
- sentiment_data.pyruns2.0 KB
- trade.pyruns3.6 KB