Skip to content

Latest commit

Β 

History

History
126 lines (92 loc) Β· 3.06 KB

File metadata and controls

126 lines (92 loc) Β· 3.06 KB

🦞 BinanceAI Pro β€” OpenClaw Skill

#AIBinance Competition Entry | Built with OpenClaw + Groq AI

A complete AI-powered trading assistant for Binance β€” runs entirely inside OpenClaw with your own API keys.


πŸš€ What It Does

Section Feature
πŸ’¬ Chat Assistant Talk to AI β€” post to Square, place trades, check orders
πŸ“‘ Signal Generator AI signals from live kline data, auto-post to Square
πŸ‹ Whale Alerts Monitor large transactions, analyze market impact
πŸ“° News Alerts Real-time news with AI analysis + one-click Square post
πŸ€– Trading Bot Automated spot trading with RSI/EMA strategy
πŸ’Ό Portfolio Manager AI health check and actionable suggestions

⚑ Quick Start

1. Install OpenClaw

curl -fsSL https://openclaw.ai/install.sh | bash
openclaw onboard --install-daemon

2. Add Binance Skill

npx skills add https://github.com/YOUR_USERNAME/binance-ai-assistant

3. Add Keys in OpenClaw

  • Binance API Key + Secret (Read + Trade only, NO Withdrawal)
  • Binance Square OpenAPI Key
  • Groq API Key (free at console.groq.com)

4. Open Dashboard

openclaw dashboard

πŸ”’ Security

  • Keys stored in OpenClaw session memory only
  • Secret key is never logged or displayed
  • Only Read + Trade Binance permissions needed
  • All mainnet trades require explicit CONFIRM
  • No withdrawal permission required

πŸ’¬ Example Commands (Chat)

signal for BTC
signal for ETH
my portfolio
buy SOLUSDT $10
sell BNBUSDT $20
crypto news
post to square β€” BTC just broke ATH!
whale alerts
open trades
close BTCUSDT

πŸ€– How Signals Work

  1. Fetch 100 candles of 4h kline data
  2. Calculate EMA20, EMA50, RSI14, Volume spike
  3. Find Support/Resistance levels
  4. Send all data to Groq LLaMA-3 70B
  5. AI returns: direction, confidence, entry, TP1, TP2, SL
  6. Auto-monitor price β€” post update when TP/SL hits

πŸ“Š Trading Bot Strategy

  • Scan BTC, ETH, BNB, SOL every 15 minutes
  • Buy signal: EMA20 > EMA50 + RSI < 38 + Volume spike
  • Safety: Skip if 1h volatility > 5%
  • Max 3 open trades, configurable trade size
  • Always asks CONFIRM before first trade

πŸ›  Tech Stack

  • OpenClaw β€” Agent runtime
  • Groq AI (LLaMA-3 70B) β€” Signal analysis, post generation
  • Binance API β€” Trading, klines, account data
  • Binance Square API β€” Social posting
  • CryptoPanic API β€” News feed (free, no key needed)
  • Whale Alert API β€” On-chain whale tracking (optional)

πŸ“¦ Files

binance-ai-assistant/
β”œβ”€β”€ skill/
β”‚   β”œβ”€β”€ SKILL.md       # OpenClaw skill definition
β”‚   └── index.js       # Core skill logic
β”œβ”€β”€ dashboard/
β”‚   └── index.html     # Full web dashboard
└── README.md

⚠️ Disclaimer

This tool is for educational and informational purposes. Crypto trading involves significant risk. Always do your own research. Never trade more than you can afford to lose.


Built with ❀️ for #AIBinance OpenClaw Competition | March 2026