Risk & Money Management
Level: 4 (Application — novel problems, no hints) Time limit: 60 minutes Total marks: 60
Question 1 — Position Sizing Under Constraints (12 marks)
A trader has a account and follows a strict risk-per-trade rule.
(a) She wants to buy stock XYZ, currently trading at , and place a stop-loss at . Calculate the maximum number of shares she can buy. (4)
(b) Her broker only permits round lots of shares. Adjust your answer from (a) to the nearest permissible lot that does not exceed her risk limit, and state the actual rupee risk taken. (4)
(c) If she instead tightened her stop to , explain quantitatively how her permissible position size changes, and comment on the trade-off she faces. (4)
Question 2 — Drawdown & Recovery (12 marks)
(a) A portfolio falls by from its peak. Calculate the percentage gain required on the reduced capital to return exactly to the previous peak. (4)
(b) A trader sets a maximum drawdown limit of , after which he halves his position sizes until recovery. Starting with , he draws down to the limit. Using half-size trading, his average winning trade now nets of remaining capital. How many consecutive such winning trades are needed to return to the original ? (Round up.) (5)
(c) Explain why a fixed daily loss limit protects a trader differently from a maximum drawdown limit. (3)
Question 3 — Kelly Criterion & Sizing (14 marks)
A strategy has a win probability of . Winning trades return and losing trades lose (where is the risk unit).
(a) State the Kelly formula for a bet with win probability , loss probability , and win/loss payoff ratio , then compute the full-Kelly fraction for this strategy. (6)
(b) The trader applies "half-Kelly." State the fraction of capital he allocates and give one reason practitioners prefer fractional Kelly. (4)
(c) Suppose the true win rate is actually only (the was over-estimated). Recompute full Kelly and interpret what a negative or near-zero result implies for the trader. (4)
Question 4 — Correlation & Portfolio Exposure (12 marks)
A trader holds three long positions, each risking of capital ( total nominal risk).
(a) Positions A and B are in the same sector with correlation ; position C is uncorrelated. Explain why the trader's effective risk is higher than a naive sum would suggest, and identify which positions behave almost like a single doubled position. (4)
(b) The trader caps total portfolio heat at but also caps exposure to any single sector at . If A and B are in the same sector, is the current allocation compliant? Justify. (4)
(c) Propose one concrete hedging action to reduce the correlated risk while keeping directional exposure to his best idea, and explain the mechanism. (4)
Question 5 — Risk of Ruin & Adaptive Sizing (10 marks)
(a) A trader risks a fixed fraction per trade and has a strategy with a positive edge. Explain qualitatively why risking a larger fraction per trade increases risk of ruin even when the edge is positive. (4)
(b) Using the simplified risk-of-ruin idea for a fixed number of units: a trader has a per-trade win probability of and risks unit per trade with units of capital. State whether increasing capital to units raises or lowers risk of ruin, and explain why. (3)
(c) Describe a rule for "sizing down" after a losing streak and "sizing up" after wins, and explain how this anti-martingale approach interacts with risk of ruin. (3)
Answer keyMark scheme & solutions
Question 1 (12)
(a) Risk budget . Stop distance per share . Shares shares. (4) (1 for risk budget, 1 for stop distance, 2 for division & answer)
(b) Round lots of 50 not exceeding 375 → shares (7 lots), since 400 shares would risk . Actual risk . (4) (2 for choosing 350, 1 for rejecting 400, 1 for actual risk)
(c) New stop distance . Shares (position size doubles). (2) Trade-off: tighter stop allows a larger position (more shares/leverage on the same risk), but the price has less room to fluctuate, so probability of being stopped out on normal noise rises. (2)
Question 2 (12)
(a) After a loss, capital of peak. Required gain . (4) (2 for 0.72 factor, 2 for gain computation)
(b) After drawdown, capital . Need to grow back to . Growth factor needed . Each win . Need . → trades. (5) (1 for target factor 1.25, 2 for log setup, 2 for n=12)
(c) A daily loss limit caps losses within a single session (e.g., a bad day of overtrading/tilt), stopping the trader before one session compounds into disaster — it is a short-horizon circuit breaker. A max drawdown limit governs the cumulative peak-to-trough decline over many sessions and triggers strategy-level changes (reduced sizing/stop trading). They protect against different failure modes: intraday emotional blowups vs. long-run capital erosion. (3)
Question 3 (14)
(a) Kelly: , where = win/loss payoff ratio, . (2) Here , , . . (4)
(b) Half-Kelly of capital. (2) Reason: full Kelly is very volatile and highly sensitive to errors in estimated and ; fractional Kelly greatly reduces drawdown volatility for only a modest reduction in long-run growth. (2)
(c) With , : . (2) Interpretation: still positive because the payoff ratio gives an edge even at 50% win rate. (A negative/zero Kelly would mean no edge — the trader should not bet at all.) (2)
Question 4 (12)
(a) With correlation , A and B move almost together, so their risks add rather than diversify — in a drawdown both lose simultaneously. Effective combined risk of A+B is close to a single doubled () position, not two independent bets. C, being uncorrelated, genuinely diversifies. (4)
(b) Sector rule: A + B share a sector = sector exposure, which exceeds the single-sector cap → non-compliant on the sector limit (even though total heat meets the portfolio cap). (4)
(c) Acceptable hedging actions (any one, with mechanism): reduce A or B size; buy a put on the sector/one holding to cap downside; short a correlated sector ETF or index future against the pair to neutralize the shared systematic move while keeping his higher-conviction single-name upside. Mechanism: the hedge gains when the correlated positions fall, offsetting the doubled directional exposure. (4)
Question 5 (10)
(a) Larger fractional bets increase the variance of the equity curve. Even with a positive expected value, a run of consecutive losses at large size can drop capital below the recovery threshold; because losses compound multiplicatively, oversizing past the Kelly optimum reduces long-run growth and can drive geometric growth negative — so ruin probability rises sharply despite positive edge. (4)
(b) Increasing capital from 10 to 20 units (same 1-unit bet) lowers risk of ruin: more "buffer" units mean a longer adverse streak is required to reach zero, and with a positive per-trade edge () the ruin probability falls roughly exponentially with the number of units of capital. (3)
(c) Anti-martingale rule: after wins, increase size (risk a larger fraction as equity grows / add units); after losing streaks, cut size (halve risk until recovery). This ties bet size to current equity, so losses are taken at smaller absolute size — shrinking the tail toward ruin — while wins are pressed at larger size. It contrasts with martingale (increasing size after losses), which dramatically raises risk of ruin. (3)
[
{"claim":"Q1a shares = 375","code":"risk=0.015*800000; dist=640-608; result=(risk/dist==375)"},
{"claim":"Q1b actual risk at 350 shares = 11200 and 400 exceeds budget","code":"budget=12000; result=(350*32==11200 and 400*32>budget)"},
{"claim":"Q2a recovery gain approx 38.89%","code":"g=1/Rational(72,100)-1; result=(abs(float(g)-0.388888)<1e-4)"},
{"claim":"Q2b needs 12 winning trades","code":"import math; n=math.ceil(math.log(1.25)/math.log(1.02)); result=(n==12)"},
{"claim":"Q3a full Kelly = 0.26875","code":"f=(1.6*0.55-0.45)/1.6; result=(abs(f-0.26875)<1e-9)"},
{"claim":"Q3c Kelly at p=0.5 = 0.1875","code":"f=(1.6*0.5-0.5)/1.6; result=(abs(f-0.1875)<1e-9)"}
]