Net-Net Stock Screening in the UAE: A Disciplined Deep-Value Approach
How to apply classic Net-Net working-capital screens to DFM and ADX equities while accounting for liquidity, governance, and capital-structure risks.
By Ali Zaigham Agha · · 2 min read · Last reviewed: 2026-06-15
The Net-Net Philosophy
The Net-Net approach, refined by Benjamin Graham, buys stocks trading below their net current asset value — roughly cash, receivables, and inventory minus all liabilities. The margin of safety comes from the liquidation value of working capital itself.
In mature markets, true Net-Nets are rare. In frontier and emerging markets like the UAE, they appear more frequently, but each candidate requires extra scrutiny around:
- **Liquidity**: Free float and daily turnover.
- **Governance**: Related-party transactions and capital-allocation history.
- **Capital structure**: Off-balance-sheet obligations and contingent liabilities.
Screening UAE Markets
A practical screen for DFM/ADX stocks starts with:
```python
import pandas as pd
def net_net_score(row):
ncav = (row['cash'] + row['receivables'] * 0.75 + row['inventory'] * 0.5
- row['total_liabilities'])
return ncav / row['market_cap']
Filter for companies where NCAV > Market Cap
cheap = df[df.apply(net_net_score, axis=1) > 1.0]
```
The discount factors on receivables and inventory reflect collection and liquidation risk. In a market with family-controlled shareholdings, I also haircut the reported liquidity by a further 10–20% for concentrated ownership.
What to Avoid
Not every Net-Net is a bargain. Common traps include:
1. **Burning cash**: A company with a shrinking current-asset base is not a static liquidation play.
2. **Asset-lite, liability-heavy**: Firms with large lease commitments or legal claims.
3. **Low float**: A cheap quote means little if you cannot build a position.
Conclusion
Net-Net investing in the UAE is a **search strategy**, not a mechanical buy signal. The filter narrows the universe; the real work is reading annual reports, tracking insider ownership, and stress-testing the balance sheet.
Want Me to Screen a UAE Stock for You?
Send a UAE stock or a watchlist for a free second opinion. I'll flag the balance-sheet and liquidity risks worth checking before you buy.
Request a free review at [alizaighamagha.com/#contact](https://www.alizaighamagha.com/#contact).