Behind the Build: FigureMoney and Ranking in a YMYL Niche
By David Miles
Personal finance is the single hardest niche on the internet to rank in. Google files it under YMYL — "Your Money or Your Life" — the category it holds to the highest trust bar, because a wrong number can cost a reader real money. AdSense scrutinizes finance pages harder than almost anything else before it will run ads on them. FigureMoney was built to clear that bar on purpose, and the decisions behind it are a useful case study in earning trust when the algorithm assumes you haven't.
Why a finance calculator is the hardest thing to rank
Most calculator sites in this space are a thin input box wrapped in ads. They give you a monthly payment with no explanation of how they got there, no sources, and no way to check the math. For a low-stakes topic that's fine. For a mortgage, a 401(k), or a paycheck, it isn't — and Google's quality systems know the difference.
So the first design principle for FigureMoney wasn't "add more calculators." It was show your work. Every result has to come with the formula that produced it, the constants it used, and the authoritative source those constants came from. That single constraint shaped the entire build.
The "show your work" architecture
Every calculator page carries two trust layers that most competitors skip:
- A methodology block that publishes the exact formula, the constants, and the source behind the number — so a reader (or a search-quality rater, or an ad reviewer) can verify the result instead of taking it on faith.
- An industry-standards block that names the actual regulations and standards a calculation is based on — IRS contribution limits, RMD rules, standard amortization — the E-E-A-T signal that says a real, informed operator built this.
One detail that mattered more than it looks: the methodology content is always in the page's HTML, even when it's visually collapsed. It's hidden with CSS, not removed from the DOM. Crawlers see the full explanation on every page whether or not a human expands it — you get the clean UI and the crawlable depth, instead of trading one for the other.
Programmatic SEO: paychecks, state by state
Take-home pay is one of the highest-intent searches in personal finance, and it's inherently local — "paycheck calculator" means something different in Texas (no state income tax) than in California (nine brackets). Generic national calculators get this wrong, and searchers can tell.
So FigureMoney generates a dedicated paycheck page for each state from a single 2026 tax dataset — 42 state landing pages, each with that state's real withholding rules, all driven off one data file rather than 42 hand-built pages. It's the same programmatic-SEO play behind the city pages on my other sites: one template, structured data, real per-location accuracy. Add a state's numbers to the dataset and its page builds itself.
One formula engine, 25 calculators
The suite is 25 calculators across seven clusters — Mortgage & Home, Auto, Investing, Retirement, Savings, Paycheck & Salary, and Loans & Debt. That range only works because the actual math lives in one place: a single finance library that every calculator imports from.
Centralizing the logic isn't just tidy — in a YMYL niche it's the accuracy strategy. Amortization, compound interest, and effective-rate math get written and checked once, then reused everywhere. There's no drift where the mortgage page and the auto-loan page disagree about how interest compounds, because they're calling the same function. When the trust pitch is "our numbers are right," you cannot afford twenty-five slightly different implementations of the same formula.
What I'd do differently
The biggest lesson is on the author signal. FigureMoney carries a "Built by David Miles" byline in the footer, linking back here — but its on-page structured data still credits the FigureMoney organization as the author, not the same David Miles person entity my other sites share. In a niche where E-E-A-T is the whole game, wiring a real, consistent author identity into the schema from day one is worth more than another calculator. That's the next fix.
The other thing: I'd launch with the full methodology and source blocks populated on every page before the site went live, rather than treating them as something to backfill. In YMYL, the trust layer is the product — it shouldn't lag the calculators.
Why this matters for your business
If you operate anywhere near a high-trust topic — health, money, legal, safety — the winning move is rarely more content. It's more verifiable content: show the formula, cite the source, name the standard, and make it all visible to both the reader and the crawler. Trust you can check ranks better than confidence you can't.
"Does this category reward showing your work?" is the question behind FigureMoney. The rest of the teardowns are in the build logs.
More from the workshop
I build and operate a portfolio of niche websites and interactive tools — and write the build log behind each one. Browse the rest of the projects and notes.
See the projects →