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

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

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
The Day My AI Scanner Got It Wrong — and What I Learned F...
tellmefranki · 2026-05-13 · via DEV Community

The Day My AI Scanner Got It Wrong — and What I Learned From It

Everyone who publishes trading content shows you the wins.

Here is one I got wrong.


The Setup

Two weeks ago my options flow scanner flagged RXRX with a put/call ratio of 0.38. That's in extreme bullish territory — heavy call buying relative to puts. The scanner classified it [EXTREME BULLISH] and it hit my Telegram before market open.

I had been watching RXRX anyway. It's a biotech name I track because it's volatile, options-active, and the P/C signal tends to be cleaner than large caps with heavy retail flow.

The signal looked right. The momentum was there. I sized into a small position.


What Actually Happened

The stock dropped 11% over the next four days.

Not a catastrophic loss — I had a stop set and honored it. But wrong is wrong.

When I went back to audit the signal, I found two things I had missed:

1. The lottery call problem

I run a lottery call filter on most tickers — it strips out OTM contracts below 0.15 delta that are almost certainly retail speculation. I had not run it on RXRX that morning. When I ran it after the fact, the adjusted P/C came out at 2.14, not 0.38.

The raw signal said extreme bullish. The filtered signal said bearish. I had traded on noise.

2. Volume context

The call volume that drove the 0.38 reading was concentrated in two strikes: the $12 and $15 calls. RXRX was trading around $8.40. Those contracts needed a 43% and 79% move respectively to expire in the money. They were lottery tickets, not institutional accumulation.

I knew about the lottery filter. I just didn't run it that morning because I was in a hurry.


The audit output

RXRX Post-Trade Audit — 2026-05-13

Signal at entry:
  Raw P/C:          0.38  [EXTREME BULLISH]
  Lottery-adj P/C:  2.14  [BEARISH]
  Delta < 0.15 calls: 91.4% of total call volume

Price action:
  Entry:   $8.47
  Stop:    $7.60 (triggered day 4)
  Exit:    $7.63
  Loss:    -9.9% on position

Was the signal wrong? No.
Did I use the signal correctly? No.

Enter fullscreen mode Exit fullscreen mode

This distinction matters. The tool worked. The workflow had a gap.


What I changed

Three things:

1. Lottery filter is now mandatory, not optional

I updated the skill so the adjusted P/C always runs alongside the raw P/C. If they diverge by more than 0.5, the output flags it as [SIGNAL UNRELIABLE — HIGH LOTTERY DISTORTION] and I don't act on it without manual review.

2. Added a volume concentration check

If more than 60% of call volume is concentrated in two or fewer strikes, the scanner now notes it. Concentrated volume in far-OTM strikes is a retail pile-on pattern, not institutional.

3. Slowed down the entry decision on biotech

Biotech names have more retail options activity than most sectors. The lottery distortion problem is worse there. I now require the adjusted P/C to confirm before acting on any biotech signal.


Why I'm publishing this

Most trading content is survivorship bias in article form. The writer shows you the XLI signal that worked, not the RXRX signal they misread.

I build tools. Tools have bugs and workflow gaps. Publishing the failure is more useful than publishing only the wins — it shows what the system actually catches and what it misses, and it forced me to fix the gap I had been ignoring.

The scanner is better now than it was two weeks ago. That's the honest version of this story.


The updated Options Flow Analyzer with mandatory lottery filtering: github.com/tellmefrankie/ai-investment-skills

Full suite with the audit trail and Telegram alerts: jaehyunpark.gumroad.com/l/tcyahy


Not financial advice. This is a post-trade audit of personal tooling decisions, not investment recommendations.