When I first started building PaperProfit, one of the problems I had to solve was figuring out how to evaluate a stock. My first attempt was embarrassingly naive: I just asked an AI directly—"Is Apple a good stock right now?" The answer came back confident, fluent, and almost completely useless. No current price data, no market context, no idea whether Apple was cheap or expensive relative to its own history. It was like asking someone who'd been in a coma for six months to give you stock tips.
The Obvious Approach Falls Apart Fast
The core issue is that most people approach AI the same way they'd approach a friend at a bar—casual, conversational, expecting context-aware wisdom. But language models don't have real-time market data. They don't know what Apple's trading at today or whether the S&P 500 is up 2% or down 3%. The words sound right; the substance isn't there. Wall Street analyst ratings seem like the obvious upgrade—professional opinions from people whose literal job is stock analysis. But PaperProfit's author discovered they're also deeply flawed. Analyst ratings are often outdated, structurally conflicted (banks make money from companies they cover), and hopelessly optimistic. When every single analyst rates everything a "buy," the signal completely disappears.
The Three-Pillar Framework That Actually Works
After weeks of research—books, finance YouTube, academic papers, and long conversations with AI assistants—the author landed on something that mirrors how professional equity analysts actually think: three complementary pillars. Fundamental Analysis measures financial health. Revenue growth, profit margins, debt load, valuation multiples like P/E ratios. Think of it as the company's report card—is it making money? Is it growing? Could a recession sink it? Technical Analysis evaluates price action and momentum. Moving averages over 50 or 200 days, RSI (Relative Strength Index), MACD indicators. This isn't about what the company is worth—it's about where the market's psychology is pointing. Qualitative Analysis interprets narrative and management quality. Are executives confident on earnings calls or evasive? Is insider buying happening while they publicly tout growth? AI reasoning excels here, parsing unstructured text that pure number-crunching misses.
Inside PaperProfit's Scoring System
The tool scores stocks across five weighted dimensions: Quality (30%), Growth (25%), Valuation (20%), Momentum (15%), and Risk (10%). Each dimension gets a score from -2 to +2. Combine them with the weights, and you get a total signal—above +1.0 is a buy, below -1.0 is a sell. The weighting reflects what research actually shows: businesses with strong fundamentals outperform over time. Momentum matters because even great companies can be bad investments at the wrong entry point. Risk acts as a penalty for high debt or volatility. A real example from the piece: Meridian Corp scores +2 on valuation (forward P/E of 13, cheap for software), +2 on quality (83% gross margins, near-zero debt), but -1 on growth (decelerating revenue) and -1 on momentum (47% off its 52-week high). Weighted total: +0.95—a weak buy. The system says it looks fundamentally sound and cheap, but the market hasn't rewarded it yet.
What AI Actually Does Well in This Stack
Here's the key architectural insight: deterministic Python code handles everything that doesn't genuinely need AI—fetching prices, calculating ratios, computing moving averages, flagging red flags. Fast, cheap, repeatable. LLMs get deployed only where they add unique value: reading unstructured text and extracting signal from noise. Specifically, PaperProfit uses AI to analyze earnings call transcripts (extracting management confidence, revenue guidance, competitive positioning) and compare 10-K SEC filings year-over-year (detecting changes in earnings quality, new risks, accounting red flags). The AI's job isn't to predict the future—it's to do the tedious parts that humans hate but language models handle well. Reading a 60-page filing and extracting ten key facts. Flagging when management tone shifts from confident to defensive.
Key Takeaways
- Simply asking an AI for stock advice is useless without grounding it in real data
- Wall Street analyst ratings are conflicted and too optimistic to be reliable signals
- Professional-grade analysis requires three complementary pillars: fundamental, technical, and qualitative
- Use deterministic code for number-crunching; deploy LLMs only for unstructured text interpretation
- A weighted scoring system forces disciplined, consistent decision-making rather than gut feelings
The Bottom Line
The dirty secret of finance isn't that analysts are stupid—it's that markets are partly math and partly human psychology, and no system predicts the future reliably. What PaperProfit demonstrates is that the real value of AI in investing isn't replacing judgment; it's automating the tedious scaffolding that lets humans make better decisions faster. Stop asking chatbots for stock tips. Start building systems that give them something useful to analyze.