Where you are. Last lesson’s managers run enormous pools cheaply and mostly try to match a market. This lesson is their opposite: small private pools, expensive, trying to find an edge the market has missed. The interesting part for this course is not the strategies. It is the borrowing that makes them worth running, and what that borrowing does on a bad month.
An edge too small to bother with
You have found something real. Two nearly identical bonds are priced a hair apart, and you are confident the gap closes. The trade earns four tenths of one percent.
On a million of your own money that is four thousand: a year’s work for a rounding error, and not a business.
Borrow nine million against your one, do the same trade at ten times the size, and the same four tenths of a percent becomes forty thousand on your million - a four percent return - minus the cost of the borrowing. Now it is a business.
Nothing about the insight changed. The edge was always four tenths of a percent. Leverage did not make it better; it made it big enough to be worth having, which is the entire economic logic of the industry and also its central danger.
The idea in one paragraph
A hedge fund is a private pool that runs specialist strategies for a smaller number of larger investors, charging both a management fee and a share of profits, and its defining feature for a plumbing course is leverage. Most genuine market edges are thin, so making a living from them requires doing them at size, which requires borrowed money. Leverage multiplies the return on the manager’s own capital symmetrically: gains and losses alike. The asymmetry arrives elsewhere, in the margin agreement, because a lender can demand its money back when the position moves against you, and it demands it at exactly the moment the position is hardest to sell. That is why one fund’s difficulty can become a market-wide event, and why module 5 is largely about the machinery built to contain it.
The same market, twice
The exercise runs one seeded return stream through two funds. One is unlevered. One holds three times its capital, financed by borrowing, and pays for that borrowing every period.
The stream includes a deliberate crash: three consecutive days of minus eight, minus seven and minus six percent.
The unlevered fund rides it out. It never faces a margin call, because it has borrowed nothing and nobody can demand anything from it. It ends the period down, and it ends the period alive.
The levered fund is where the lesson is, and it is not the lesson I expected when I wrote the exercise.
The crash was survivable; the grind was not
Watch the ratio of equity to exposure - the fraction of the position that is genuinely yours, and the number the margin clerk watches.
Before the crash it sits at 0.416. The three crash days take it to 0.273. That is a brutal three days, and it clears the maintenance line of 0.25 with room to spare. The fund survives the crash.
The margin call arrives eleven days later, on a run of ordinary small losses - a quarter percent here, a percent there - because they land on a position that is still three times too big for the equity now supporting it.
Why anyone else should care
A fund that fails on its own is its investors’ problem. A fund that fails while owing money is its lenders’ problem, and its lenders are banks. When several levered funds hold similar positions and all receive margin calls at once, they all sell the same assets into the same falling market, which pushes prices down, which triggers more calls. The mechanism needs no villain and no coordination.
That chain is the reason module 5 exists: margin, collateral and clearing houses are the machinery built to interrupt it, and you now understand the fire they were designed to contain.
Check yourself
1. Leverage multiplies gains and losses symmetrically. Where does the asymmetry that actually kills funds come from?
From the margin agreement rather than the arithmetic. The lender can demand repayment when the position moves against you, forcing a sale at the worst possible moment, whereas nothing forces a levered winner to take profits. The returns are symmetric; the right to demand your money back is not.
2. The three-day crash did not trigger a margin call, but a quiet fortnight afterwards did. How?
Because the crash left the fund with much less equity supporting the same size of position, so the ratio was close to the line even after surviving. Small ordinary losses then pushed it across. The dangerous state was not the crash itself but the thinner cushion it left behind.
3. Why is a margin call not a judgement about the strategy?
Because it is triggered by a ratio crossing a threshold specified in advance. No one evaluates whether the position will eventually be right; the agreement simply requires collateral to be topped up when the cushion thins. That automatic quality is what makes calls arrive simultaneously across many funds.
4. How does one fund’s margin call become a market-wide event?
Meeting a call usually means selling, and the asset being sold is the one that has just fallen. If many levered holders own similar positions, they receive calls together and sell together, pushing prices down further and triggering more calls. The feedback loop requires no coordination, which is why the machinery in module 5 exists to interrupt it.
Do this
Run one market through both funds and find where the call lands.
python3 code/leveraged_fund.py
The starter leaves you the levered step: the exposure moves with the market, the borrowing accrues its financing cost, and equity is what remains after the lender is repaid. The assertions check that the unlevered fund is never called, that the levered one is, and - the interesting one - that the ratio survives the crash block and the call comes later. Success prints both paths, the three ratios around the crash, and the line:
the crash was survivable and the grind was not: leverage does not only add risk to the bad day, it removes your margin for ordinary ones
The completed version is in solutions/leveraged_fund.py.
What you can now do. You can quantify what leverage does to a return stream, explain why margin calls arrive mechanically and simultaneously, and say why a private fund’s difficulty becomes a public one. The next lesson introduces the counterparty on the other side of all that borrowing.