Transcription
Benzinga Pro's essential plan is $197 a month. Unusual Whales is 50. A real Bloomberg terminal is over 2,000. These are the tools that hand traders an edge. Live market headlines, options flow, smart money signals, momentum screeners, and every single one of them charges you every single month forever.
So, I asked a stupid question. How much of that could I rebuild myself for free? Not a toy. A real working market terminal. Live headlines, a momentum screener, smart money signals, a sector rotation map, an AI analyst, even paper trading. The answer turned out to be one file. One HTML file, 118 kilobytes, no server, no database, no monthly bill.
In the next few minutes, I'll show you it actually running, then take it apart piece by piece. Show you exactly how a $0 app pulls live market data, and tell you honestly where it breaks. Let's go.
Before I explain a single line of code, let me prove this is real. Because a screenshot proves nothing. This is the live app. Up top is the headline feed. Real market news pulled in as it publishes. Now, watch what happens when I touch the filters. I click Trump, and the feed collapses down to only statements that move markets. I click Fed and FOMC, and now it's only central bank headlines, economic data, geopolitical, earnings. Each tab refilters the entire feed instantly. None of this is fake. None of it is hard-coded. It's live news being sorted in your browser the moment you click. That is the whole point of this video. Everything I'm about to show you is running right now inside one file that costs nothing to host.
So, let me show you the rest of what it does. Here's the full terminal. This is the momentum screener. Trending tickers, Reddit buzz, pre-market movers, and I can flip between them to see what's actually heating up. This is the sector rotation heat map. I toggle between 1 month, 3 months, and 6 months. And the whole map recolors to show which sectors money is rotating into. Down here, smart money signals, insider buys, 13F filings, fund flows, the footprints big players leave behind. This is the bear market meter, a probability gauge built from the signals across the dashboard. And there's a key ETF panel tracking the indices everyone watches. The Nasdaq, the S&P, small caps, the volatility index, gold, bonds, oil. One screen, the whole market at a glance.
Now, none of this is magic. Let me show you the trick that makes a free app behave like a paid one. Here's the constraint I gave myself. And it's the most important decision in the whole project. One HTML file. That's it. No React, no build step, no install command, no back-end server. sitting somewhere costing me money every month. Just HTML, CSS, and plain JavaScript in a single document you could email to someone. Why does that matter? Because the moment you add a server, you add a bill, and you add a thing that can go down at 3:00 in the morning. A single static file has no server to crash, no database to maintain, and it can be hosted for free, basically, forever. The constraint sounds limiting. It's actually the superpower. Everything I built had to fit inside the browser, which forced every clever solution you're about to see.
So, here's the obvious problem. If there's no backend, where does the live market data come from? You can't just reach out and grab a news site's feed directly from a webpage. The browser blocks it for security. This is the part most people get stuck on, and the workaround is the heart of the whole app. Every major outlet publishes a free feed. The Wall Street Journal, CNBC, Google News, even Reddit's stocks and Wall Street Bets pages. Those feeds are open, free, and updated constantly. To read them from a plain webpage, the data passes through a free public proxy that adds the one permission the browser is looking for, and hands the feed back as clean data. No API key, no account, no cost. That is the entire pipeline. Free public feeds through a free public proxy rendered in your browser. The same live news those $100 terminals are reselling you. Flowing into a file that costs nothing.
Okay, so raw headlines are flowing in. By themselves, headlines are just noise. The actual product is the layer on top. The logic that turns news into signals and all of it runs in the browser. The sentiment filter reads each headline and tags it. Is this about Trump, the Fed, the economy, a geopolitical shock? The momentum logic cross-references what's trending against social chatter. So, a ticker blowing up on Reddit floats to the top. The smart money detector scans specifically for the language of insider buys and institutional filings. None of this is a neural network. It's pattern matching, keyword scoring, and ranking. Simple, transparent rules. And honestly, that's a feature, not a flaw, because I can read exactly why any signal fired. No black box.
Now for the one piece that does use real AI. This is the stock analyst. I type in a ticker. Let's say a name everyone's watching. And behind the scenes, it sends a tight, structured prompt to Google's Gemini 2.5 flashlight model and streams back a clean read on the setup. I picked flashlight on purpose. It's fast, it's cheap, and for summarizing a setup in a few sentences, it is more than enough. This is the difference between today and just a few years ago. A single person building one free file can now bolt a genuinely capable AI analyst onto their dashboard with one call. The thing that used to require a team and a budget is now a few lines of code.
Here's where I have to be completely honest with you because this is the part people will get the wrong idea about. The terminal has a trading engine but it is paper trading only. You start with a thousand dollars of fake money. The auto trade feature reads the signals on the dashboard and places simulated trades. Every fill shows up in the trade history. Time ticker side price profit and loss and your portfolio updates. And here's the part I'm quietly proud of. There's no database behind any of this. The entire portfolio lives in your browser's own local storage. So it survives when you close the tab with zero back end.
Now, let me say the important thing plainly. This is a simulator. It is not connected to a broker. It is not real money. And nothing in this app is financial advice. It's a sandbox to test whether the signals are worth anything without risking a cent.
So how do you put a thing like this online for nothing? Because it's just one static file I don't need a host I pay for a server or a credit card. It goes straight onto free static page hosting. The kind that sits right on top of a normal code repository. And it's live on the internet in minutes. No deploy pipeline. No monthly invoice. That free hosting was built for exactly this. A single self-contained page with no back end. The running cost of this entire trading terminal every month forever is $0.
Now, let me do the thing the get-rich videos never do and tell you exactly where this breaks because it does. First, those free public proxies. They're free, which means they're rate-limited and they can go down. And when they do, your feed stops until they're back. Second, a newsfeed is not a real-time market tick. It's delayed by minutes, sometimes more. Fine for context, useless for scalping. Third, the signals are heuristics. Keyword scoring is not alpha. It points your attention at things. It does not predict the future and you should never confuse the two. And fourth, again, the trading is simulated. Paper money in a sandbox. This is a genuinely useful, genuinely free market dashboard. It is not a money printer and anyone who tells you a free file will make you rich is selling you something. This one's just honest about what it is.
Here's the part I actually want you to take away because it's bigger than stocks. Strip out the trading and what you really have is a template. Free public feeds pulled through a free proxy, scored with simple rules in the browser, an AI model bolted on for the smart part, all in one static file hosted for free. That same stack works for almost anything you'd want to monitor. A sports dashboard. A news radar for your industry. A release tracker for the tools you care about. A job board watcher. The expensive era of needing a server, a database, and a monthly bill just to put a live dashboard on the internet is for a huge number of projects simply over. One file. Live data. Zero dollars. That's the whole idea.
If you want to build your own version of this I packaged the entire recipe into a free one-page blueprint. The exact data sources. The proxy trick. The AI wiring. And the free deploy steps. All on a single sheet. To grab it just comment the word squawk on this video and the link comes straight to you.
If this was useful subscribe. Because I do this every week. Taking one expensive locked down thing and rebuilding it honestly in the open. You can find me on YouTube, on Facebook, and on Instagram. All under Hyper Automation Labs. And if you want to go deeper, my paid guides walk you through building real tools like this one with AI. Start to finish. They're linked right below. One file. Live data. Zero dollars. Comment squawk. And I'll see you in the next one.