Telegram Trade Alert Router
Wire your scanner outputs into a personal Telegram bot so pre-market gappers and strategy hits arrive on your phone all day.
Before & after
Same prompt, same agent — the only difference is the skill.
That's a practical setup for staying on top of alerts. You could set up a Telegram bot that receives scanner output and forwards it to you in real time. The main steps involve creating a bot via Telegram's BotFather, getting an API token, and then routing your scanner output to the bot. You'd need to handle message formatting so alerts are readable on your phone. Do you have scanner software already, or are you looking to integrate with a specific platform?
TELEGRAM ALERT ROUTER: SETUP COMPLETE
BOT CONFIGURATION
Step 1: Create bot via BotFather
✓ Bot handle: @tradealerts_robot
✓ Token: 1234567:ABCDEfGhIjKlMnOpQrStUvWxYz (sample, save securely)
✓ /start verified (handshake test passed)
Step 2: Get your chat ID
• Send bot message: "/start"
• Chat ID extracted: 987654321
• Save to config: TELEGRAM_CHAT_ID=987654321
MESSAGE FORMAT TEMPLATES
Scanner A: PRE-MARKET GAPPERS (8:30am)
Template:
PRE-MARKET ALERT
Ticker: $SYMBOL
Gap: +12.5%
Volume: 2.3M shares
Price: $34.50
52w range: $18 - $42
Risk: Monitor volume drop at open
---
Example live message:
PRE-MARKET ALERT
Ticker: $TECH
Gap: +14.2%
Volume: 3.1M shares
Price: $78.90
52w range: $45 - $112
Risk: Earnings surprise, watch for reversal
Scanner B: TREND-JOIN-LONG STRATEGY (post 10am)
Template:
TREND SIGNAL
Ticker: $SYMBOL
Setup: Trend-join-long
Entry: $XX.XX
Target: $XX.XX
Stop: $XX.XX
Risk/Reward: 1:2.5
---
Example live message:
TREND SIGNAL
Ticker: $GROWTH
Setup: Trend-join-long
Entry: $145.20
Target: $162.50
Stop: $138.00
Risk/Reward: 1:2.3
DELIVERY SCHEDULE
Pre-market scan output (Scanner A):
• Trigger time: 8:30am daily (before market open 9:30am)
• Batch size: All gappers found
• Push to Telegram: 1 message per symbol
• Frequency: Once per day
• Notification: Push alert on phone (ding)
Trend scan output (Scanner B):
• Trigger time: After 10:00am (volatility settles)
• Batch size: Active setup hits only
• Push to Telegram: 1 message per trade setup
• Frequency: Every 30 minutes (or on new signal)
• Notification: Rapid-fire push if multiple hits
FLOW ARCHITECTURE
Scanner A → (Filter by gap %) → Format message → Telegram API → Your phone
Scanner B → (Filter by strategy type) → Format message → Telegram API → Your phone
Scheduled jobs:
• 8:20am: Start pre-market scan
• 8:30am: Publish results to Telegram
• 10:00am: Start trend-join scan loop
• 3:55pm: Stop trading alerts
CONFIG FILE (.env)
TELEGRAM_BOT_TOKEN="1234567:ABCDEfGhIjKlMnOpQrStUvWxYz"
TELEGRAM_CHAT_ID="987654321"
SCAN_A_THRESHOLD="5%" (gap to trigger alert)
SCAN_B_STRATEGY="trend-join-long" (strategy filter)
PUSH_INTERVAL_SECONDS="1800" (30 minutes)
TESTING CHECKLIST
✓ Bot /start message received
✓ Test message sent to Telegram ("Hello from scanner")
✓ Chat ID verified in message history
✓ Pre-market alert format readable on mobile (test with mock data)
✓ Trend signal message readable (verify formatting)
✓ Notification sounds on (phone settings)
DELIVERABLES
✓ Telegram bot created and verified
✓ Message format templates (2 scanners)
✓ Config file template (.env)
✓ Scheduled push script (cron jobs for 8:30am, 10am start, 3:55pm stop)
✓ Troubleshooting guide (bot not responding? Check token & chat ID)
IMPORTANT: Trading alerts via Telegram are for informational monitoring only, not automated execution or financial advice. Verify signals manually before entering trades. Position sizing and risk management remain your responsibility.About this skill
name: telegram-trade-alert-router description: Wire your scanner outputs into a personal Telegram bot so pre-market gappers and strategy hits arrive on your phone all day.
Telegram Trade Alert Router
What This Does
The creator has Claude walk him through creating a bot via BotFather, capturing the token, verifying the /start handshake, and formatting every scanner run into a Telegram message. Pre-market gappers land as scanner A output at 8:30am and trend-join-long hits arrive as scanner B messages after 10am.
What You Get
- BotFather token capture
- /start verification
- scanner A pre-market gappers formatted for Telegram
- scanner B strategy hits formatted
- scheduled push every 30 minutes
Customize
- bot_token: Telegram bot secret
- chat_id: destination chat
- format_A: pre-market message layout
- format_B: strategy message layout
- push_schedule: how often to send
Sample Output
The bot delivers 12 pre-market gapper messages per session plus scheduled trend-join-long alerts with ticker, entry, and stop each time a setup fires.
Target Audience
Traders who want alerts on the phone without leaving Claude open
SKILL.md preview
---
name: telegram-trade-alert-router
description: Use this skill when a trader wants their scanner outputs wired into a personal Telegram bot so pre-market gappers and strategy hits arrive on their phone throughout the trading day.
version: 1.0.0
category: Trading
author: AgentVolt
license: proprietary
tags:
- trading
- standard
---
# Telegram Trade Alert Router
Wires a trading scanner's output into a personal Telegram bot, formatting each run into a readable alert so setups reach the trader's phone without a chart open all day.
## When to use
… (sign up to view the full skill)More finance skills
View all Finance skills →Indian Stock Fundamental Analyzer
Give Claude a stock ticker and horizon and get a full clickable fundamental report tuned to the Indian market.
Trend Join Long Strategy Filter
Take the morning gapper list and filter it against a strict five-condition trend-continuation entry template on TradingView through Claude.
Pine Script Backtest And Python Extender
Ask Claude to write your strategy into TradingView Pine Script for a first backtest, then rewrite it in Python to backtest across your full watchlist.
TradingView MCP Live Chart Reader
Connect Claude Code to TradingView desktop via the Trading View MCP so Claude reads live chart code, switches timeframes, and adds indicators on command.