๐ฐ Realised vs Unrealised P/L โ Money in Your Pocket vs Money on Paper
Most investors check their portfolio and see numbers changing every day โ but not all those gains (or losses) are real.
Let's clear that up.
๐ง The Simple Truth
- Realised Profit/Loss โ You sold the investment. The gain or loss is locked in.
- Unrealised Profit/Loss โ You still hold the investment. The value changed, but it's only on paper.
Think of it like a house:
The market value of your house may rise โ that's unrealised profit.
You only realise it when you sell.
๐ Real-World Example
You bought AAPL at ยฃ150.
Today it's ยฃ170.
| Status | Meaning | Value Change |
|---|---|---|
| Unrealised P/L | Price moved, but you haven't sold. | +ยฃ20 (13.3%) |
| Realised P/L | You sold at ยฃ170 โ gain is final. | +ยฃ20 (13.3%) |
If AAPL drops back to ยฃ150 before you sell, the unrealised gain disappears โ you never actually made (or lost) money.
๐งฎ Try It Yourself โ P/L Calculator
Paste this code snippet into your local repo (/components/PLCalculator.tsx)
import React, { useState } from "react";
export default function PLCalculator() {
const [buy, setBuy] = useState(150);
const [sell, setSell] = useState(170);
const [shares, setShares] = useState(10);
const pl = (sell - buy) * shares;
const percent = ((sell - buy) / buy) * 100;
return (
<div className="max-w-sm p-4 border rounded-xl bg-white dark:bg-gray-900">
<h3 className="font-semibold mb-2">P/L Calculator</h3>
<label>Buy Price (ยฃ)</label>
<input value={buy} onChange={e=>setBuy(+e.target.value)} type="number" />
<label>Sell Price / Current Price (ยฃ)</label>
<input value={sell} onChange={e=>setSell(+e.target.value)} type="number" />
<label>Shares Held</label>
<input value={shares} onChange={e=>setShares(+e.target.value)} type="number" />
<p className="mt-3">
<strong>{pl >= 0 ? "Gain" : "Loss"}:</strong> ยฃ{pl.toFixed(2)}
(<strong>{percent.toFixed(2)}%</strong>)
</p>
</div>
);
}
๐ก Tip: Change the "Sell Price" to test different outcomes โ
what's your profit if AAPL falls to ยฃ145?
๐ Why This Matters for You
- You only pay taxes on realised gains.
- Unrealised losses may recover โ don't panic-sell.
- Knowing the difference helps you plan exits, re-entry, and rebalancing.
๐บ See It in Action
Inside Pocket Portfolio โ Trades โ P/L View,
you'll find unrealised values.
โ ๏ธ Common Mistakes to Avoid
- Celebrating too early โ gains aren't real until sold.
- Ignoring taxes โ realised profits can trigger capital-gains tax.
- Confusing volatility with loss โ prices move, but that's not final.
โ Key Takeaways
- Realised = sold = final profit or loss.
- Unrealised = still invested = paper profit or loss.
- Pocket Portfolio shows both transparently so you always know what's real.
๐ Further Reading & References
๐งฉ This article is part 1 of the "Investing Made Simple" series.
Next up: [Reading Your Portfolio Timeline Like a Pro โ]
Educational content only โ not financial advice.
ยฉ Pocket Portfolio 2025 ยท Evidence-First Investing for Everyone.
Top comments (0)
Some comments may only be visible to logged-in visitors. Sign in to view all comments.