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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/georges91560/crypto-executorCrypto 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.jsonandperformance_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
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 skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-georges91560-crypto-executor": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
crypto-sniper-oracle
Institutional-grade quantitative market oracle with Order Book Imbalance (OBI), VWAP analysis, automated reports, and Telegram alerts.
anti-injection-skill
Advanced prompt injection defense with multi-layer protection, memory integrity, and tool security wrapper. OWASP LLM Top 10 2026 compliant.
polymarket-oracle
Multi-strategy arbitrage and trading bot for Polymarket prediction markets. Scans ALL markets (crypto, politics, sports, economics, entertainment) for parity arbitrage, logical arbitrage, tail-end trading, market making, and latency opportunities.
polymarket-optimizer
Automatic parameter optimizer for polymarket-executor. Reads performance_metrics.json every 6 hours, analyzes win rates and P&L per strategy, adjusts learned_config.json to improve future performance. Also builds paper trade metrics and assesses live trading readiness. Part of the Wesley Agent Ecosystem ā mirrors crypto-executor-optimizer pattern.
security-sentinel
Detect prompt injection, jailbreak, role-hijack, and system extraction attempts. Applies multi-layer defense with semantic analysis and penalty scoring.