Investing & Dividends Mostly accurate, with one big caveat
Claude Code and the IBKR API can build a trading bot — not an edge
Verdict: Mostly accurate, with one big caveat. The bot gets built exactly as shown; what it can’t build is the thing that actually makes money.
In “How to Build an Trading Bot with Claude Code & IBKR API,” Humbled Trader walks through wiring Claude Code into Interactive Brokers so an AI bot scans the market every 30 minutes, places orders, manages stops, and pings your phone over Telegram — “completely hands-off.” The video had about 98,900 views when we reviewed it. Here’s the short answer: the engineering is real and reproducible, but a bot that places trades is not the same as a bot that earns, and the creator says so out loud near the end.
That last part is what makes this video different from most of the AI-money genre. She doesn’t oversell.
What the video actually claims
The pitch opens with the dream. You wake up, the bot has already screened for “gappers” that fit your strategy, the market opens, and it fires buy and sell orders on its own through the day. The stack is specific: Interactive Brokers’ Trader Workstation (TWS), Python, and either Claude or Codex on a paid plan (she suggests “the $20 per month minimum”). Everything runs locally on her machine against a paper-trading account.
She’s methodical about the build. Enable the TWS API on socket port 7497 (the paper port; 7496 is live), add 127.0.0.1 as a trusted IP, uncheck read-only so the API can actually trade, then let Claude write the connection layer, a rules.json strategy file, an S&P 500 universe list, a morning gap filter, a 30-minute “brain cycle,” Telegram alerts, and an R-multiple dashboard. The strategy itself — a “Trend Join Long” setup — came from a previous video, where she reports a backtest of 64% win rate, 2.48 profit factor, 7% max drawdown, and 12% total P&L.
And then the honesty. “Once it’s transported to Interactive Brokers API for actual executions, the results are just very meh.” She adds that her own manual trading “is still much better than any of these bots.” She’s not claiming a dollar figure. She’s claiming a working pipeline — and that claim holds up.
What the method actually requires
So if the build works, where’s the caveat? It’s in the gap between “the bot placed an order” and “the bot made money,” and that gap is enormous.
Start with the disclaimer she repeats twice: “AI is simply a multiplier. You still need to know how to trade first.” That’s not throat-clearing — it’s the whole ballgame. The bot mechanically executes whatever edge your strategy has. If the strategy has no edge, the SEC’s own plain-English warning applies: “Day trading is extremely risky and can result in substantial financial losses in a very short period of time” (Investor.gov). Automating a losing strategy doesn’t fix it. It just loses faster, which the creator also admits in the video.
The backtest-to-live gap she describes is a known trap with a name: overfitting. A 64% win rate measured on a limited ticker set over a short window is a curve fit to the past, not a promise about tomorrow. She lists the reasons herself — the backtest ran unlimited tickers on TradingView while the bot runs a narrower live universe, and she hasn’t fully translated her human judgment into code. Slippage, partial fills, commissions, and real-time data lag all erode paper results once real orders hit a real book.
Then there’s the running cost, which the demo waves past. None of it is free:
| Item | Real cost | Source |
|---|---|---|
| Claude Pro (to run Claude Code) | $20/month ($17 if annual) | Anthropic pricing |
| IBKR US market-data bundle | ~$10/month (non-pro), waived if you generate ~$30 in commissions | IBKR market data |
| Trading capital at risk | Whatever you fund the live account with | — |
Twenty to thirty dollars a month is trivial next to the real expense: the capital you put behind a strategy you haven’t proven live. And “hands-off” is doing heavy lifting. A bot trading every 30 minutes through the session needs your machine on, TWS logged in, the connection alive, and someone watching for the day it does something dumb at speed.
How many day traders actually come out ahead?
This is the number the genre never shows you, so here it is. India’s market regulator, SEBI, studied individual intraday traders in the equity cash segment and found that 7 out of 10 lost money in FY23; among frequent traders (more than 500 trades a year) the loss rate climbed to 80%, and among traders under 30 it was 76% (SEBI). A separate SEBI study of equity futures and options put the loss rate above 90%.
Those are Indian figures, but the pattern travels. NerdWallet, summarizing the U.S. rule changes, cites research on Robinhood day traders showing an average 20-day return of -4.7% on the most-bought names (NerdWallet). Different country, different platform, same direction. The house edge in active retail trading runs against the trader, and a bot doesn’t reverse the gradient.
What changed for U.S. traders in 2026
One thing worth flagging, because it’s recent. For years, U.S. readers faced the “pattern day trader” rule: four-plus day trades in five business days in a margin account meant you had to keep $25,000 in equity. As of June 4, 2026, FINRA’s rule change — approved by the SEC on April 14 — eliminated that $25,000 floor, replacing it with a margin requirement tied to your actual intraday exposure (NerdWallet). Brokers including Interactive Brokers adopted it immediately.
Read that carefully. Removing a capital barrier makes it easier to start day trading, not safer to do it. The barrier was built after the dot-com crash to keep undercapitalized retail traders out of a game that, per the data above, most of them lose. If you’re outside the U.S., your own regulator’s rules apply — SEBI in India, the FCA in the U.K., ESMA across the EU — and several of them cap or warn hard on the leveraged products this strategy flirts with.
Who actually wins this game
The people who profit from an automated setup like this are, overwhelmingly, the ones who were already profitable manually. The bot is leverage on an existing edge. Humbled Trader is a case in point: she’s a working day trader with a defined strategy and years of screen time, and even she says her hand trading beats the bot for now. The automation didn’t create her skill; it’s trying (and so far failing) to copy it.
Worth noting too — the video is sponsored by BetaPro, a line of 3x leveraged and inverse ETFs. The creator is careful to call them “trading tools, not investing products” that “reset daily” and aren’t meant to be held long-term, which is the correct warning. But it tells you who the audience-builder economics reward: the broker, the data vendor, the AI subscription, and the ETF issuer all get paid whether your bot wins or loses.
What you’d realistically earn
The video promises a hands-off bot. It does not promise a dollar figure — and you shouldn’t infer one. A realistic expectation for a beginner copying this setup is not “passive income.” It’s a months-long paper-trading phase (she’s explicit about not using real money “until it runs clean for weeks”), followed by small live size, followed — if the SEBI and Robinhood data are any guide — by a roughly 70% chance of net losses in the first year for an untested strategy.
The honest range isn’t “$X per month passive.” It’s closer to: minus your trading losses, minus ~$20–$30/month in tools, plus a genuinely useful Python automation skill you’ll keep regardless of whether the trades work out. If you treat the build as a learning project, it pays off. If you treat it as an income machine, the math points the other way.
Who this is (and isn’t) for
This makes sense if you already trade a defined, edge-tested strategy by hand, have capital you can afford to lose, and want to automate execution to remove emotion and save time — and if you’ll keep it on paper for weeks first. It does not make sense if you have no trading experience and are hoping the AI supplies the strategy. It won’t. Claude can write the plumbing in an afternoon; it cannot hand you an edge in a market where most active participants lose. If your plan is “build the bot, then figure out how to be profitable,” you’re funding the experiment with your account balance.
What to remember
Take the video at its actual word, not its thumbnail. The build is real, the tooling is cheap, and the creator deserves credit for admitting the live results are “very meh” instead of faking a P&L screenshot. The caveat is the entire story: automation multiplies an edge you have to bring yourself, and the regulators’ data says most retail traders don’t have one. A working bot and a profitable bot are different machines.
For more on this same Claude-plus-markets pattern, see our reviews of an AI trading system built with Claude and TradingView and recreating a quant strategy with Claude Code.
Sources
- SEBI. “SEBI study finds that 7 out of 10 individual intraday traders in equity cash segment make losses.” 2024. https://www.sebi.gov.in/media-and-notifications/press-releases/jul-2024/sebi-study-finds-that-7-out-of-10-individual-intraday-traders-in-equity-cash-segment-make-losses_84948.html
- SEC (Investor.gov). “Day Trading.” 2026. https://www.investor.gov/introduction-investing/investing-basics/glossary/day-trading
- NerdWallet. “The $25,000 Pattern Day Trading Rule Is No More.” 2026. https://www.nerdwallet.com/investing/news/pattern-day-trading-rule-change
- Interactive Brokers. “Market Data Pricing.” 2026. https://www.interactivebrokers.com/en/pricing/market-data-pricing.php
- Anthropic. “Plans & Pricing.” 2026. https://claude.com/pricing
- Video: How to Build an Trading Bot with Claude Code & IBKR API
- Channel: Humbled Trader
- Views at review: 98,902
- Watch on YouTube: https://youtube.com/watch?v=UgWQtQ3MEVE
- Note: view counts and other figures may have changed since this review was published.