Buying What You Can Touch: P/TBV on US Markets (2000-2025)
Price-to-Tangible-Book filters out the accounting fog and asks a simple question: what are the hard assets actually worth relative to price? Run on US large-caps with basic quality filters, this strategy returned 10.03% CAGR over 25 years versus 7.83% for SPY, with a down-capture ratio of just 10.71%. That number is the headline: the portfolio absorbed roughly one dollar of downside for every ten that hit the broader market.
Contents
The Strategy
Book value is a slippery number. It includes goodwill paid for acquisitions, patents, brand valuations, and other intangibles that are difficult to assess in a stress scenario. Tangible book strips all of that away, leaving only physical assets, property, plant, equipment, inventory, receivables, net of liabilities.
The P/TBV ratio is:
P/TBV = Market Cap / (Total Stockholders' Equity − Goodwill − Intangible Assets)
A low P/TBV means the market is pricing the company close to, or below, the value of its physical assets. The Fama-French (1992) research identified book-to-market ratio as one of the strongest cross-sectional predictors of equity returns. P/TBV tightens that signal by removing the intangible noise.
The quality filters exist to separate cheap-and-troubled from cheap-and-solid. A company can have a low P/TBV because it's destroying capital. The ROE, ROA, and operating margin screens eliminate that category.
| Parameter | Value |
|---|---|
| Signal | P/TBV ascending (lowest = cheapest) |
| Quality filters | ROE > 8%, ROA > 3%, OPM > 10% |
| Rebalance | Annual, July (45-day filing lag) |
| Selection | Top 30 by P/TBV, equal weight |
| Minimum stocks | 10 (else hold cash) |
| Market cap floor | $1B USD |
| Universe | NYSE, NASDAQ, AMEX |
| Period | 2000-2025 (25 years) |
| Benchmark | SPY |
What We Found
The 10.71% down-capture ratio is the most striking result. Over 25 years, SPY had several severe drawdowns: the dot-com crash, the financial crisis, the 2022 rate shock. In each case, the P/TBV portfolio took far less damage than the index. The maximum drawdown was -38.73%, which is meaningful, but the drawdown happened mostly in stock-specific years rather than broad market crashes.
The early years set the tone. In 2000, when the S&P fell 14.78% as dot-com valuations collapsed, the strategy returned +24.84%. In 2001, SPY fell another 20.77% and the portfolio gained +16.34%. Companies with real assets and low intangible inflation simply weren't caught up in the speculative valuation surge of the late 1990s. When that bubble burst, they had nowhere to fall from.
2008 shows the "hard asset floor" in a financial crisis. The strategy fell -20.01% while SPY fell -26.14%. Not a perfect hedge, but the physical asset floor provided real support when financial sector balance sheets were being repriced downward.
2022 is the rate-rising case study. The strategy returned +26.26% versus SPY's +18.31%. When interest rates rise, the discount rate applied to future cash flows increases, which punishes growth stocks. Tangible assets, by contrast, often get repriced higher in inflationary environments. Physical capital becomes more expensive to replace, which means the book value understates replacement cost. The 2022 divergence reflects exactly that dynamic.
2019 requires honest treatment. The strategy fell -30.84% while SPY gained +7.12%. This was the peak of the growth-vs-value divergence. Tech and software companies with minimal tangible assets dominated market leadership. The same pattern hit P/TBV strategies globally: India fell -29.64%, Canada -19.97%, Germany -8.38%. It wasn't a strategy failure or a data artifact. It was a genuine period where the market explicitly rewarded intangible-heavy business models and punished asset-heavy ones. That reversal came, but it took years.
The win rate of 52% against SPY understates the quality of the wins and losses. The strategy tends to win big in years where SPY falls and lose in years where SPY's growth-stock concentration surges. The asymmetry of the outcomes, not the frequency, drives the 25-year edge.
Annual Returns
| Year | Strategy | SPY | Vs. Benchmark |
|---|---|---|---|
| 2000 | +24.84% | -14.78% | +39.62% |
| 2001 | +16.34% | -20.77% | +37.11% |
| 2002 | +6.69% | +3.29% | +3.40% |
| 2003 | +36.21% | +16.44% | +19.77% |
| 2004 | +37.97% | +7.94% | +30.03% |
| 2005 | +17.96% | +8.86% | +9.10% |
| 2006 | +22.65% | +20.95% | +1.70% |
| 2007 | -23.41% | -13.71% | -9.70% |
| 2008 | -20.01% | -26.14% | +6.13% |
| 2009 | +31.98% | +13.42% | +18.56% |
| 2010 | +25.04% | +32.94% | -7.90% |
| 2011 | -1.19% | +4.10% | -5.29% |
| 2012 | +13.99% | +20.85% | -6.86% |
| 2013 | +14.18% | +24.50% | -10.32% |
| 2014 | +0.01% | +7.38% | -7.37% |
| 2015 | +3.33% | +3.36% | -0.03% |
| 2016 | +22.97% | +17.73% | +5.24% |
| 2017 | +4.89% | +14.34% | -9.45% |
| 2018 | +3.42% | +10.91% | -7.49% |
| 2019 | -30.84% | +7.12% | -37.96% |
| 2020 | +34.76% | +40.68% | -5.92% |
| 2021 | -6.92% | -10.17% | +3.25% |
| 2022 | +26.26% | +18.31% | +7.95% |
| 2023 | +11.43% | +24.60% | -13.17% |
| 2024 | +18.47% | +14.67% | +3.80% |
SPY 2021 and 2022 returns are as-recorded from our benchmark, consistent across all strategies in this series.
The Current Screen
The live screen identifies the 30 cheapest quality-filtered US large-caps by P/TBV right now. View the current results at:
cetaresearch.com/data-explorer?q=z9gpaUlNfi
Part of a Series: Global | UK | Sweden | India | Germany | China | Canada
Run It Yourself
The screen is straightforward SQL against the Ceta Research data warehouse. It computes tangible equity from the most recent FY balance sheet, joins TTM quality metrics, and ranks by P/TBV:
WITH bs AS (
SELECT symbol,
(totalStockholdersEquity - COALESCE(goodwill,0) - COALESCE(intangibleAssets,0)) AS tangible_equity,
ROW_NUMBER() OVER (PARTITION BY symbol ORDER BY dateEpoch DESC) AS rn
FROM balance_sheet
WHERE period = 'FY'
AND totalStockholdersEquity IS NOT NULL
AND totalStockholdersEquity > 0
)
SELECT bs.symbol, p.companyName, p.sector,
ROUND(k.marketCap / NULLIF(bs.tangible_equity, 0), 2) AS p_tbv,
ROUND(k.returnOnEquityTTM * 100, 1) AS roe_pct,
ROUND(k.returnOnAssetsTTM * 100, 1) AS roa_pct,
ROUND(f.operatingProfitMarginTTM * 100, 1) AS opm_pct,
ROUND(k.marketCap / 1e9, 2) AS mktcap_b
FROM bs
JOIN profile p ON bs.symbol = p.symbol
JOIN key_metrics_ttm k ON bs.symbol = k.symbol
JOIN financial_ratios_ttm f ON bs.symbol = f.symbol
WHERE bs.rn = 1
AND bs.tangible_equity > 0
AND k.returnOnEquityTTM > 0.08
AND k.returnOnAssetsTTM > 0.03
AND f.operatingProfitMarginTTM > 0.10
AND k.marketCap > 1000000000
AND p.exchange IN ('NYSE','NASDAQ','AMEX')
ORDER BY p_tbv ASC
LIMIT 30
The COALESCE(goodwill, 0) handles companies that report no goodwill (rather than NULL). The NULLIF(bs.tangible_equity, 0) prevents division by zero for edge cases.
Limitations
This is a stock selection tool, not a market timing tool. The strategy stays invested in every year in this backtest (zero cash periods). In 2019, it lost -30.84%. There's no signal to exit.
The 25-year backtest covers one complete secular cycle: the dot-com bust, the commodity supercycle, the financial crisis, the post-QE growth era, and the rate normalization. Future cycles may look different. P/TBV tends to cluster in industrials, materials, and financial sectors. If those sectors face structural headwinds, the strategy underperforms for extended periods as the 2012-2018 stretch shows.
Survivorship bias is present. The universe includes only companies that existed and had data at each rebalance date. Companies that went bankrupt or were delisted mid-year are generally not captured in our backtesting framework's exit handling.
Equal weighting across 30 positions means each stock starts at roughly 3.3% of the portfolio. With 25 years of data and annual rebalancing, the sample includes 25 portfolio constructions. Statistical significance over 25 years is reasonable but not iron-clad.
Data: Ceta Research (FMP financial data warehouse), 2000-2025. Full methodology: backtests/METHODOLOGY.md