
I Built a Professional Crypto Screener & Alert with Claude Code | FREE Tradingview Alert Alternative
The AI University16 June 2026Watch on YouTube
Part of series
Ep. 6 · Claude Code: Beurstools Bouwen
Praktische tutorials voor het bouwen van gratis stock screeners en alertbots met Claude Code.
View the seriesDescription
Adblitz AI Website: www.Adblitzai.com Get Project Files on Skool Community: https://www.skool.com/the-ai-university-9677/classroom Stop scanning charts manually every morning. I Built a Professional Crypto Screener & Alert with Claude Code | FREE Tradingview Alert Alternative This video shows you how to build a professional crypto day trading screener using Claude Code and Hyperliquid's free API — one that applies the same three filters serious traders use, and delivers the passing setups to your Telegram automatically before your trading session starts. The screener uses three independent filters that confirm each other: Volume Surge, Short-Term Price Momentum, and EMA/VWAP Trend Confirmation. Full walkthrough: - Telegram BotFather setup — bot token and chat ID in 3 minutes - Hyperliquid API explained — two-phase architecture (quick scan + EMA/VWAP deep screen) - The 3 filters: what each means, why each alone is not enough, and why together they create a reliable signal - Claude Code builds the full two-phase screener from one plain-English prompt - Live test showing which coins pass and which fail — full terminal transparency - Day trading vs swing trading config switch INITIAL PROMPT: "I want you to build a crypto day trading screener web app with telegram alert bot. Use Hyperliquid's free public API to get live data — it's a major crypto exchange that gives you real-time prices, volumes, and full hourly chart history for every coin it lists, completely free with no API keys needed. Here's what the screener should do in two steps: -Step 1 — Quick scan all coins: From Hyperliquid, get the current price, yesterday's closing price, today's total trading volume in dollars, and the total open interest for every coin. Find any coin where the price has gone up between 5% and 15% compared to yesterday/last hour/last 15 min(figure out yourself as I needed screener to refresh every 15min and every 1 hours so provide a toggle button for it), AND where today's trading volume is more than 10% of how much money is currently locked in open positions. That second check is my volume filter — it confirms real buying activity, not just a price blip. -Step 2 — Deeper check on coins that passed Step 1: For each of those coins, fetch the last 100 15min and hourly price and volume data. From that data, verify three more things: First, the 9-period exponential moving average is above the 21-period, which is above the 50-period — this is called EMA alignment and it means all timeframes agree the coin is in an uptrend. Second, the current price is above the average price today weighted by how much was traded at each price — this is called VWAP, and it means buyers have been dominant since the session started. Third, the coin moved between 1% and 5% in the last 15 min or hour alone — confirming it is actively trending right now without being already overextended. Score every coin that passes both steps: give 50% of the score to the volume activity, 30% to the 24-hour price change, and 20% to the 1-hour price change. Show me the top 10 results in a clean Telegram message with coin name, the 15m, the 1-hour and 24-hour percentage changes, the volume score, whether EMAs are aligned, and the overall score. -Put all the number thresholds and score weights in a settings section at the top of the file so I can easily change them. Use my Telegram bot token and chat ID — I’ve added them in .env file (Here is the format of the message but you are free to modify it to make it more informative and appealing: “Top Day Trading Setups (Hyperliquid) — 08:02 AM | 1. SOL | 1h: +2.3% | 24h: +8.1% | Vol/MC: 0.18 | EMA: Aligned | Score: 0.87 | 2. AVAX | 1h: +1.8% | 24h: +6.4% | Vol/MC: 0.14 | EMA: Aligned | Score: 0.79 | 3. WIF | 1h: +3.1% | 24h: +9.2% | Vol/MC: 0.22 | EMA: Aligned | Score: 0.76"”). Schedule this to run automatically every 15m or 1 hr. based on option selected by the user. Provide the 15m and 1 hr. option on the screen and when user selects any one of them then fire the alert on telegram whenever new crypto appears in the screener for that selected timeframe. Auto-refresh toggle - if user toggles it ON then auto-refresh the screen for the selected timeframe and send the alert if new crypto coins appears in the screener. You are free to make necessary adjustments in three screener parameters I highlighted earlier if in case I misquoted/misrepresented anything so that you suggest high probability trades in the screener." DISCLAIMER: The content in this video is for educational and entertainment purposes only. I am not a financial advisor. Investing in cryptocurrencies involves high risk, and you may lose your capital. Past performance is not indicative of future results. The screener outputs in this video are technical signals for research purposes only — they are NOT buy or sell recommendations. Always do your own research (DYOR) before making any investment decisions. #ClaudeCode #CryptoScreener #DayTrading
What you'll learn
- Learn how to build a crypto screener with Claude Code and the free Hyperliquid API, eliminating manual chart scanning.
- The screener applies three independent filters (volume surge, price momentum, EMA/VWAP trend) that confirm each other for reliable trading signals.
- Claude Code generates the complete two-phase screener directly from an English prompt, including Telegram integration for automated alerts.
- Configure the screener for day trading or swing trading, with choice between 15-minute and 1-hour refresh intervals.
- Top 10 setups are automatically sent to Telegram with coin name, percentage changes, volume score, and EMA status.