Crypto Investor
My AI Agent Sends Me a Crypto Dashboard Every Morning β Before I Check Twitter
Key Takeaway
A single cron job replaced 20 minutes of morning crypto research with one 30-second Telegram message β prices, fear-greed, whale alerts, and notable moves, delivered before I open any app.
The Problem
I used to start every morning the same way. Open CoinMarketCap. Check BTC. Check ETH. Check SOL. Switch to DefiLlama for TVL changes. Open Twitter to see what happened overnight. Scroll through three Telegram groups. Maybe check Arkham for whale movements.
Twenty minutes gone. Every single day.
And half the time, nothing meaningful had happened. The other half, I'd already missed the move because I was busy cross-referencing tabs.
I run a portfolio across US equities, Japanese stocks, French equities, and crypto/DeFi. I don't have 20 minutes to spend on one asset class's morning check. Not when I have board meetings, Billy hitting 5.5M⬠GMV, and 31 AI agents to coordinate across PyratzLabs.
The problem isn't access to information. It's that the information is scattered across seven apps, none of which talk to each other.
The Solution
I built a crypto morning dashboard agent on Mr.Chief. One cron job. Fires at 8:00 AM Paris time. Pulls everything I need from multiple APIs, synthesizes it, and delivers one structured Telegram message.
No apps. No tabs. No scrolling.
The agent uses the cmc-api-crypto skill for price data and the alpha-vantage skill as a fallback. It hits CoinMarketCap for prices and market data, Alternative.me for fear-greed, and DefiLlama for protocol TVL. Everything gets compressed into a single message with clear formatting.
The Process
The agent configuration is straightforward:
yamlShow code
# mrchief cron config
name: crypto-morning-dashboard
schedule: "0 7 * * *" # 7:00 UTC = 8:00 Paris
channel: telegram
model: claude-sonnet-4-20250514
task: |
Pull crypto dashboard data and send morning briefing:
1. BTC, ETH, SOL β price, 24h %, 7d %, market cap
2. Total crypto market cap + BTC dominance %
3. Fear & Greed Index (current + yesterday + last week)
4. Any top-50 token moving >5% in 24h
5. Notable whale transactions >$10M
6. Top 3 TVL changes across DeFi protocols
Format as compact Telegram message. No fluff.
The agent's internal flow:
pythonShow code
# Simplified agent logic
async def morning_dashboard():
# Phase 1: Price data
prices = await cmc_api.get_quotes(symbols=["BTC", "ETH", "SOL"])
market = await cmc_api.get_global_metrics()
# Phase 2: Sentiment
fear_greed = await fetch("https://api.alternative.me/fng/?limit=7")
# Phase 3: Notable moves
top50 = await cmc_api.get_listings(limit=50)
movers = [t for t in top50 if abs(t["percent_change_24h"]) > 5]
# Phase 4: DeFi TVL shifts
protocols = await defillama.get_protocols()
tvl_changes = rank_by_24h_tvl_change(protocols)[:3]
# Phase 5: Whale alerts
whales = await arkham_api.get_transfers(min_usd=10_000_000, hours=24)
return format_telegram_message(prices, market, fear_greed,
movers, tvl_changes, whales)
The Telegram message lands looking like this:
View details
π CRYPTO MORNING β Mar 12, 2026
BTC $87,420 β² 2.3% | MC $1.71T | Dom 54.2%
ETH $4,180 βΌ 0.8% | MC $503B
SOL $218 β² 4.1% | MC $102B
π¨ Fear & Greed: 34 (Fear)
Yesterday: 29 | Last week: 41
π₯ Notable Moves (>5%):
ONDO β² 12.4% | RENDER β² 8.7% | DOGE βΌ 6.1%
π Whale Alerts:
β’ 2,400 BTC ($210M) moved to Coinbase
β’ $45M USDC β Aave v3
π TVL Shifts:
Morpho β² 8.2% | Eigenlayer β² 5.1% | Curve βΌ 3.4%
The Results
| Metric | Before | After |
|---|---|---|
| Time spent on morning crypto check | 20 min | 30 sec |
| Apps/tabs opened | 7 | 0 (Telegram notification) |
| Missed overnight moves | ~2/week | 0 |
| Data points per check | ~15 (manual) | 42 (automated) |
| Cost | Free (my time was the cost) | ~$0.03/day in API calls |
Over 30 days, that's 10 hours reclaimed. Ten hours I now spend on things that actually move the needle.
Try It Yourself
- Sign up for Mr.Chief and configure Telegram delivery
- Set up a CoinMarketCap API key (free tier: 333 calls/day β more than enough)
- Create the cron job with your preferred tokens and thresholds
- Adjust the schedule to your timezone and wake-up time
- Add or remove data sources β the agent is modular
The hardest part is accepting that you don't need to "feel" the market by scrolling Twitter. You need data. Delivered on time. In one place.
I don't check crypto prices anymore. They check in with me.
Related case studies
DeFi Investor
Yield Alert: USDC Rate Dropped 60% β Agent Rotated to Morpho in 4 Minutes
How an AI agent detected a 60% USDC yield drop on Aave and rotated to Morpho vault in 4 minutes. DeFi yield optimization with Mr.Chief agents at PyratzLabs.
Crypto Investor
DCA Automation on Base β $500 of ETH Every Monday, Zero Effort
AI agent automates weekly DCA purchases on Base L2 via Bankr β executing swaps, tracking cost basis, and pausing on abnormal gas. Zero manual effort crypto accumulation.
Quant Trader
Backtesting a Momentum Strategy on Crypto β The Agent Found a 2.3 Sharpe
AI agent backtests a crypto momentum strategy over 3 years β 2.3 Sharpe ratio, stress-tested against Luna crash and FTX collapse. Full report with benchmarks.
Want results like these?
Start free with your own AI team. No credit card required.