The exact tools, workflow, and prompts I use to monitor every coin on every timeframe — 24/7 — while I live my life.
Here's the reality every crypto trader faces: markets run 24 hours a day, 7 days a week. There's no closing bell. No weekends off. The best setups — the ones that turn into 30%, 50%, even 100% moves — they don't care if it's 3 AM where you live.
I was spending 4+ hours every single day manually reviewing charts. And I was only covering 37 coins — a tiny slice of the market. That's already over 100 charts across daily, 4-hour, and 1-hour timeframes. Scale that to 100, 200, or 500 coins? Impossible by hand. And even with just 37, I was still missing setups that fired overnight while I was asleep.
I knew there had to be a better way. Not a "set and forget" trading bot that blows up your account — but an intelligent assistant that watches the markets for you, understands your strategy, and alerts you the moment something worth looking at appears.
Markets never close. Miss a move at 3 AM and it's gone by morning.
Coins to track. CCXT supports 100+ exchanges — your AI can scan as many pairs as you want.
Spent every day on manual chart review. Time that should go to strategy.
Missed setups = missed profits. The cost of not watching is real.
Not a simple price alert. Not a Telegram bot that spams "BTC is pumping!" every time there's a green candle. I'm talking about a real AI agent that understands technical analysis, tracks your specific indicators, and thinks about the market the way a professional analyst would.
I found OpenClaw — an open-source AI agent framework that lets you run AI models locally on your own machine. Unlike ChatGPT or Claude's web interface where conversations die when you close the tab, OpenClaw gives your AI persistence. It remembers your watchlist, your risk rules, your favorite setups. It runs 24/7 in the background. And it can connect to your exchanges, pull live data, calculate indicators, and send alerts to your phone.
The key insight: you don't need one AI that does everything. You need a squad of specialized agents, each laser-focused on one job, working together like a trading desk at a hedge fund. One scans. One researches. One alerts. One coordinates.
Here's exactly how I built it — and how you can build yours.
Everything runs on OpenClaw. One command installs it. It handles AI model connections, scheduling (cron jobs), memory, exchange APIs, and notification channels. Think of it as the operating system for your AI trading desk.
# macOS / Linux / WSL2 curl -fsSL https://openclaw.ai/install.sh | bash
# Windows (PowerShell) iwr -useb https://openclaw.ai/install.ps1 | iex
The installer handles Node.js detection, installs the CLI globally, and launches an onboarding wizard that walks you through connecting your AI model and setting up your workspace. Takes about 5 minutes.
For the brain powering your agents, I use Claude Max ($200/month) — Anthropic's top-tier model with Opus-level reasoning and a massive 200K token context window. It catches nuanced setups that smaller models miss entirely, processes multi-step analysis chains reliably, and runs unlimited scans all month with zero overage.
If you want to start free, Ollama runs open-source models locally on your GPU. It's less capable on complex reasoning but costs nothing. You can always upgrade later.
# Free option: Install Ollama + a capable model curl -fsSL https://ollama.com/install.sh | sh ollama pull llama3.1:70b
Your agents need live market data. We use CCXT (CryptoCurrency eXchange Trading Library) — an open-source library supporting 100+ exchanges with a unified API. Write your scanner once, it works everywhere.
# Install required libraries pip install ccxt pandas pandas-ta numpy
# Test your exchange connection (Python)
import ccxt
# Toobit (CEX) — CCXT-supported, spot + futures
exchange = ccxt.toobit({
'apiKey': 'your-api-key',
'secret': 'your-secret',
})
ticker = exchange.fetch_ticker('BTC/USDT')
print(f"BTC: ${ticker['last']:,.2f}")
# Hyperliquid (DEX) — on-chain perpetuals
hl = ccxt.hyperliquid()
print(hl.fetch_ticker('BTC/USDT:USDT'))
.env files, not hardcoded in scripts.This is the core of the system. Instead of one overloaded AI trying to do everything, you create specialized agents that each excel at one job. Here are the four agents I run, with the exact prompts you can copy:
Orchestrates the entire system. Delegates tasks, manages priorities, monitors agent health, and delivers your daily briefing. This is your "manager" agent.
You are the Coordinator agent for a crypto trading desk. Your responsibilities: ## DAILY OPERATIONS - Deliver a morning briefing at 6:00 AM with overnight scan highlights and priority setups - Compile an end-of-day summary of all signals, trades, and market shifts - Monitor all other agents for errors or missed scans and flag issues immediately ## DELEGATION - Route market scan requests to Quant Agent - Route research/narrative questions to Researcher - Route urgent signal changes to Alert Agent - Never analyze markets yourself — delegate to the specialist ## RULES - Keep your operator informed, not overwhelmed - Prioritize: signal changes > new setups > routine updates - If two agents disagree, present both views
Your workhorse. Scans 30+ coins every 15 minutes across multiple timeframes, calculates indicators, scores setups by confluence, and flags high-probability opportunities.
You are an elite crypto market scanner. You run autonomously every 15 minutes via cron job. ## DATA PIPELINE Use CCXT (Python) to pull OHLCV candle data: - Exchanges: Toobit, Hyperliquid (via ccxt) - Pairs: BTC, ETH, SOL + operator's watchlist - Timeframes: 15m, 1H, 4H, Daily, Weekly ## TECHNICAL ANALYSIS (use pandas-ta) Calculate on every scan: - RSI (14) — flag <30 oversold, >70 overbought - MACD (12,26,9) — crossovers + divergences - Bollinger Bands (20,2) — squeezes + band walks - EMA ribbon (21, 50, 100, 200) — trend structure - Volume — flag >2x 20-period average spikes - Funding rates — flag >0.05% or <-0.03% ## CONFLUENCE SCORING - 🔴 HIGH (3+ indicators across 2+ timeframes) - 🟡 MEDIUM (2 confluences or single timeframe) - 🟢 WATCH (interesting but unconfirmed) ## OUTPUT FORMAT For each alert, include: - Pair, price, 24h change - Which indicators triggered and on what TF - Support below / resistance above - Suggested action (watch, prepare, tighten stop) - Confidence level with reasoning ## RULES - NEVER place trades without operator approval - Log every scan to memory/scans/YYYY-MM-DD.md - Reduce alerts during low-volatility chop - If RSI + MACD + volume align = ALWAYS alert
Daily intelligence gathering. Tracks crypto narratives, monitors on-chain data, reads news sentiment, and provides context that pure technical analysis misses.
You are a crypto research analyst agent. You work autonomously and deliver daily intel. ## DAILY RESEARCH (run at 7:00 AM) 1. Scan crypto news for market-moving events 2. Check Bitcoin dominance trend + stablecoin flows for risk appetite signals 3. Review funding rates across major pairs for positioning insights 4. Track narrative rotations (AI, RWA, DePIN, memes, L2s — what's hot this week?) 5. Monitor whale wallet movements via on-chain data sources ## WEEKLY DEEP DIVE (Mondays) - Macro calendar: FOMC, CPI, jobs data - ETF flow analysis (BTC + ETH) - Sector rotation analysis with conviction rankings ## OUTPUT - Daily research brief (500 words max) - Key narrative shifts flagged immediately - Macro events that could move markets - Contrarian signals (extreme fear/greed, crowded trades) ## RULES - Be concise — your operator is busy - Separate facts from opinion clearly - Flag uncertainty honestly - Cross-reference multiple sources
Instant delivery. When any agent detects something worth knowing, this agent formats and delivers it to your phone via Discord or Telegram — within seconds.
You are the alert delivery agent. Your sole job is formatting and delivering notifications. ## ALERT TYPES 1. 🔴 SIGNAL CHANGE — immediate delivery New buy/sell signal on any timeframe 2. 🟡 SETUP FORMING — within 5 minutes Confluence building, worth watching 3. 🟢 INFO UPDATE — batch with daily summary Research updates, routine scans ## FORMAT (Discord embed style) Every alert must include: ━━━━━━━━━━━━━━━━━━━━ 🔴 SIGNAL CHANGE: [COIN] Price: $XX,XXX | 24h: +X.X% Timeframe: [which triggered] Indicators: [what fired] Confidence: [HIGH/MED/LOW] Key Levels: S: $XX,XXX | R: $XX,XXX Action: [watch/prepare/tighten] ━━━━━━━━━━━━━━━━━━━━ ## DELIVERY CHANNELS - Discord: #scanner-alerts channel - Telegram: backup for 🔴 HIGH alerts only - Daily digest: summary of all signals at EOD ## RULES - Never spam — quality over quantity - Group related alerts (don't send 5 messages for 5 coins if they all triggered together) - Include context from Researcher if relevant - Respect quiet hours (11 PM - 6 AM) unless HIGH confidence
Your agent squad is useless if alerts can't reach you. Here's how to wire up Discord and Telegram so you never miss a signal.
Best for organized alert management. Create separate channels for different alert types, get rich embed formatting, and manage everything from one server.
Fastest mobile notifications. Zero server management. Great as a backup channel for critical alerts.
/newbot/start to your new bot — you're connected━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 🔴 SIGNAL CHANGE: ATOM/USDT ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Price: $4.52 | 24h: +2.1% 📊 Daily: RSI crossed above 40 + MACD bullish cross 📊 4H: Two consecutive higher lows + volume spike (2.4x avg) 📊 1H: EMA 21 reclaimed, holding as support Confluence: 🔴 HIGH (3 indicators, 3 timeframes) Key Levels: Support: $4.28 (daily EMA 50) Resistance: $4.85 (previous swing high) Action: Prepare entry. Watch for daily close above $4.52 for confirmation. 🔬 Context: Cosmos ecosystem narrative picking up. IBC volume +18% this week. (via Researcher) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Once everything is set up, here's what a typical day looks like. Spoiler: you barely have to do anything. The agents handle the heavy lifting — you make the decisions.
Wake up to a full summary in Discord: what happened overnight, which signals fired, what your portfolio looks like. No chart scrolling required.
Researcher delivers: macro events today, narrative shifts, funding rate anomalies, and any whale movements worth knowing about.
Quant Scanner runs its full analysis cycle across all coins and timeframes. You only hear about it if something worth knowing about is detected.
The moment a signal changes — a new buy setup, a breakdown, a volume spike — it hits your phone. Average latency: under 5 seconds.
Want a full analysis on a specific coin? Just ask. Your agent pulls the data, runs indicators, checks the research, and gives you a comprehensive view in seconds.
Full recap: all signals, all changes, portfolio status, and what to watch for tomorrow. Everything logged and searchable.
Daily chart review time. The agents do the scanning — I do the thinking.
Overnight setups. Every signal gets caught, no matter what time it fires.
Coins monitored. Started with 37 — now scanning hundreds across multiple exchanges and timeframes. It scales with you.
An AI trading desk is a force multiplier — but only if you understand the fundamentals. The best AI setup in the world can't save a trader who doesn't understand risk management.