惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
月光博客
月光博客
博客园_首页
博客园 - 叶小钗
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
量子位
小众软件
小众软件
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
IT之家
IT之家
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I automated stop-loss monitoring with Claude Code and...
tellmefranki · 2026-05-14 · via DEV Community

The problem with manual stop-loss monitoring: you check your phone, the market moves while you're not watching, and you exit a position three points below where you meant to.

Here's how I built an automated stop-loss monitor that sends a Telegram alert within 2 seconds of a threshold breach — using Claude Code, Yahoo Finance's free API, and a SKILL.md file.

No broker API. No paid data service. No authentication flow.


How it works

The skill polls Yahoo Finance's undocumented quote endpoint every 5 minutes during market hours:

https://query1.finance.yahoo.com/v8/finance/chart/{ticker}?range=1d&interval=1m

Enter fullscreen mode Exit fullscreen mode

When the current price crosses a configured threshold, it fires a Telegram alert and logs to a 30-minute deduplication cache (so you don't get spammed if a stock bounces around a level).


Market hours detection

No point running the monitor at 3am or on weekends. The skill checks market session before each poll:

Pre-market:   04:00 — 09:30 ET  (alerts enabled, wider thresholds)
Regular:      09:30 — 16:00 ET  (alerts enabled, normal thresholds)
After-hours:  16:00 — 20:00 ET  (alerts enabled, wider thresholds)
Closed:       all other times   (skip)

Enter fullscreen mode Exit fullscreen mode

Weekend detection prevents the monitor from running at all on Saturday/Sunday.


The Telegram alert format

[ALERT] TEM — Stop-loss triggered
Price: $47.13  |  Threshold: $47.50
Session: Regular hours  |  Time: 14:23 ET

Distance from threshold: -0.78%
Action: Review position sizing. Exit if conviction unchanged.

Enter fullscreen mode Exit fullscreen mode

This format is intentional: price, threshold, distance from threshold, and a suggested action in one message. No dashboard to open.


Configuration

The skill accepts natural language configuration in Claude Code:

Monitor these positions:
- AAPL: stop-loss $170, take-profit $200
- NVDA: stop-loss $110
- TEM: stop-loss $47.50, take-profit $55
- IREN: stop-loss $50

Alert me via Telegram when any threshold is hit.
Check every 5 minutes during market hours.

Enter fullscreen mode Exit fullscreen mode

Claude parses this into a position config object and starts the monitoring loop.


What it caught in production

Two live examples from running this on a real portfolio:

TEM at $47.44 — stop-loss set at $47.50. Alert fired 4 minutes after the open. Exited before the next leg down to $44.

IREN at $50 support — set an alert at $50 exactly. Alert fired at $49.97 during after-hours. Position size reduced ahead of open.

Neither of these required me to watch a chart. The alert came to my phone, I checked the news, made a decision.


Deduplication logic

Without deduplication, a stock bouncing around your stop-loss level sends an alert every 5 minutes. The 30-minute cache solves this:

First breach: alert fires, timestamp logged
Next poll (5 min later): price still below threshold → skip (within 30-min window)
35 minutes later: if price recovered and then drops again → alert fires again

Enter fullscreen mode Exit fullscreen mode

The cache resets if price recovers above threshold and then breaches again — so you're not silenced on a genuine second breach.


Installation

The free version monitors up to 3 tickers. It's in the open-source repo:

# Clone and install the free skill
git clone https://github.com/tellmefrankie/ai-investment-skills
cp price-monitor-alert/SKILL.md ~/.claude/skills/price-monitor-alert.md

Enter fullscreen mode Exit fullscreen mode

Then in Claude Code:

/price-monitor-alert
Monitor AAPL stop-loss $170, NVDA stop-loss $110
Alert me via Telegram

Enter fullscreen mode Exit fullscreen mode

The full version (unlimited tickers + options flow alerts) is in the Pro Bundle ($29).


Why Yahoo Finance instead of a paid API

Yahoo Finance's quote endpoint has been publicly accessible for years. It's not documented, not guaranteed, but it works. For a personal portfolio monitor, the latency (under 1 second) and 5-minute polling interval are both fine.

If you need tick-level data or guaranteed uptime, Polygon.io Basic ($29/month) is the right tool. The Options Flow Analyzer in the same repo uses Polygon for that reason.


The repo is MIT licensed: github.com/tellmefrankie/ai-investment-skills

Not financial advice. Monitor your own positions responsibly.