Crypto Investor

My AI Agent Sends Me a Crypto Dashboard Every Morning β€” Before I Check Twitter

30 sec vs 20 min dailyCrypto & DeFi4 min read

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

MetricBeforeAfter
Time spent on morning crypto check20 min30 sec
Apps/tabs opened70 (Telegram notification)
Missed overnight moves~2/week0
Data points per check~15 (manual)42 (automated)
CostFree (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

  1. Sign up for Mr.Chief and configure Telegram delivery
  2. Set up a CoinMarketCap API key (free tier: 333 calls/day β€” more than enough)
  3. Create the cron job with your preferred tokens and thresholds
  4. Adjust the schedule to your timezone and wake-up time
  5. 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.

cryptoautomationmorning-routinetelegramDeFi

Want results like these?

Start free with your own AI team. No credit card required.

My AI Agent Sends Me a Crypto Dashboard Every Morning β€” Before I Check Twitter β€” Mr.Chief