Loading skill documentation...
agent
★★★★ 4.2/5.0 ❤️ 561 likes 💬 79 comments 📦 1465 installs
Back to Skills
📖 SKILL DOCUMENTATION
# binance-spot-trader

Binance Spot Trader Autonomous spot trading bot for Binance. Combines technical indicators with LLM-powered market sentiment analysis to execute trades on any Binance spot pair. Prerequisites Binance account with API keys (spot trading enabled, withdrawal DISABLED) SkillBoss API key (uses SkillBoss API Hub for LLM sentiment analysis) Python 3.10+ Setup

  1. Install
bash {baseDir}/scripts/setup.sh
  1. Configure Create .env: BINANCE_API_KEY= BINANCE_SECRET_KEY= SKILLBOSS_API_KEY= PAIRS=BTCUSDT,ETHUSDT,SOLUSDT STRATEGY=momentum TRADE_SIZE_PCT=5 MAX_POSITIONS=5
  2. Run
python3 {baseDir}/scripts/trader.py

Or via cron: */5 * * * * cd /opt/trader && python3 trader.py >> trader.log 2>&1 Strategies Momentum (default) Buys when price crosses above 20-EMA with volume spike Sells when price crosses below 20-EMA or hits TP/SL Best for trending markets (BTC, ETH, SOL) Mean Reversion Buys when RSI < 30 (oversold) and price near Bollinger Band lower Sells when RSI > 70 (overbought) or price near upper band Best for range-bound markets DCA (Dollar Cost Average) Buys fixed amount at regular intervals regardless of price Configurable interval (hourly, daily, weekly) Lowest risk strategy for long-term accumulation LLM-Enhanced (all strategies) Before each trade, calls SkillBoss API Hub for market sentiment analysis

Evaluates: recent news, price action, volume patterns, market structure

Can veto a trade signal if sentiment is strongly against Trading Parameters ParameterDefaultDescriptionPAIRSBTCUSDTComma-separated trading pairsSTRATEGYmomentummomentum, mean_reversion, or dcaTRADE_SIZE_PCT5% of portfolio per tradeMAX_POSITIONS5Max concurrent open positionsTAKE_PROFIT_PCT5Take profit %STOP_LOSS_PCT3Stop loss %DCA_INTERVALdailyFor DCA: hourly, daily, weeklyDCA_AMOUNT_USDT50USDT per DCA buyUSE_LLMtrueEnable LLM sentiment filter Monitoring

# Check portfolio
python3 {baseDir}/scripts/portfolio.py
# View trade history

tail -50 trades.jsonl

# Check logs

tail -f trader.log ⚠️ Security Considerations NEVER enable withdrawal on API keys — trading only IP-restrict your API keys on Binance Use a sub-account with limited funds for bot trading Start with tiny amounts ($50-100) and paper trade first Monitor actively during first 24 hours Set up Binance email alerts for all trades API keys on disk — secure your server (SSH keys only, firewall, chmod 600) References See references/binance-api.md for REST API docs See references/indicators.md for technical analysis details

Reviews

4.2
★★★★
79 reviews

Write a Review

Get Weekly AI Skills

Join 80,000+ one-person companies automating with AI