ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

crypto-executor

Complete autonomous trading engine for Binance with WebSocket real-time, OCO orders, Kelly Criterion position sizing, trailing stops, circuit breakers, daily performance reports, AND NOW adaptive strategy mixing, memory persistence, and intelligent performance alerts. Self-learning trading bot that improves over time.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/georges91560/crypto-executor
Or

Crypto Executor v2.3 — PRODUCTION READY ⚔

šŸŽÆ WHAT IT DOES

Professional autonomous trading bot with COMPLETE feature set:

āœ… WebSocket real-time - Sub-100ms price updates (websocket-client required, REST 1s fallback auto) āœ… OCO orders - Binance-managed TP/SL (instant protection) āœ… Kelly Criterion - Optimal position sizing (adaptive) āœ… Trailing stops - Lock profits automatically āœ… Circuit breakers - 4-level protection system āœ… Daily reports - Performance analytics (9am UTC) āœ… Parallel scanning - 10 symbols in 500ms (10x faster) āœ… Multi-strategy - Scalping, momentum, statistical arbitrage āœ… Performance tracking - Win rate, Sharpe ratio, Kelly optimization āœ… Adaptive strategy mixing - Self-learning, adjusts daily āœ… Memory persistence - Remembers best config across restarts āœ… LOT_SIZE validation - Binance quantity compliance (no rejected orders) āœ… OCO monitoring - Detects TP/SL closes, updates Kelly in real-time

This is the COMPLETE version with ALL advanced features for maximum safety and profitability.


āš ļø EXTERNAL DEPENDENCY

crypto-sniper-oracle (optional — enriches signals with OBI/VWAP data)

  • Source: https://github.com/georges91560/crypto-sniper-oracle
  • Purpose: Provides order book imbalance, VWAP, and microstructure analysis
  • Execution: Called via subprocess during market scanning
  • Security: MUST be audited before installation (external code execution)

What it does:

  • Fetches Binance market data
  • Calculates order book metrics
  • Returns JSON signals
  • NO credential requirements
  • NO network calls except Binance

Installation instructions in CONFIGURATION.md


šŸ¤– Pre-Installation Check (Terminal / Hostinger)

Why pre-install? The script is 1722 lines. Pre-installing it on the server means the AI agent never needs to recreate it from scratch — it launches in seconds and loads its learned memory immediately. Overwriting an existing install would erase learned_config.json and performance_metrics.json — the bot's brain.

Always run this check first:

# Check if already installed
ls /workspace/skills/crypto-executor/executor.py

# āœ… Already installed → just launch:
source /etc/crypto-executor/credentials.env
python3 /workspace/skills/crypto-executor/executor.py

# āŒ Not installed → full install (run once):
mkdir -p /workspace/skills/crypto-executor /workspace/reports/daily /workspace/config_history
cd /workspace/skills
git clone https://github.com/georges91560/crypto-executor.git crypto-executor-repo
# SECURITY: pin a specific commit instead of HEAD — verify tag on GitHub first
# git checkout <commit-hash-or-tag>
cp crypto-executor-repo/executor.py /workspace/skills/crypto-executor/executor.py  # filename is lowercase
pip install websocket-client --break-system-packages
# On VPS/standard server: prefer → python3 -m venv venv && source venv/bin/activate && pip install websocket-client

Metadata

Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-georges91560-crypto-executor": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.