Level 5 — MasteryMarket Participants

Market Participants

90 minutes60 marksprintable — key stays hidden on paper

Chapter: 1.4 Market Participants Difficulty: Level 5 — Mastery (cross-domain: finance + math + coding + proof) Time Limit: 90 minutes Total Marks: 60

Instructions: Answer all three questions. Show every step. Where code is required, write clean Python (pseudocode acceptable if logic is exact). Justify all financial-institutional claims with reasoning, not assertion.


Question 1 — Market Makers, Spreads & Inventory Risk (22 marks)

A market maker (MM) on an exchange continuously quotes a bid bb and ask aa for a stock whose "true" mid-price is mm. The MM sets symmetric quotes b=mδb = m - \delta, a=m+δa = m + \delta where δ>0\delta > 0 is the half-spread.

Order flow arrives as a Poisson process. The probability that a buy (or sell) market order executes against the MM's quote in a short interval decays with the half-spread as λ(δ)=Aekδ\lambda(\delta) = A\,e^{-k\delta} per side, with constants A>0A>0, k>0k>0.

(a) The MM's expected gross revenue rate from the round-trip spread is proportional to 2δλ(δ)2\delta \cdot \lambda(\delta). Derive the half-spread δ\*\delta^\* that maximises this revenue rate. Prove it is a maximum. (6)

(b) Now include inventory risk: holding unmatched inventory costs the MM at rate cδ1c\,\delta^{-1} (tighter spreads → faster fills → less inventory drift, hence the inverse dependence). The net objective is R(δ)=2δAekδcδ.R(\delta) = 2\delta A e^{-k\delta} - \frac{c}{\delta}. Set up the first-order condition for the optimal δ\delta. Show it reduces to a transcendental equation and explain why no closed-form solution exists. (6)

(c) Write a Python routine using Newton–Raphson to solve part (b) numerically for A=100A=100, k=2k=2, c=5c=5. Include the derivative used and a stopping criterion. State the economic meaning of your root. (6)

(d) Explain, in institutional terms, why market makers are essential to the "immediacy" of a market, and how their function differs from that of a broker and a proprietary trading firm. (4)


Question 2 — FII/DII Flows, Settlement & the Depository Chain (20 marks)

On day TT, foreign institutional investors (FIIs) net-buy shares worth F\text{₹}F crore while domestic institutional investors (DIIs) net-sell shares worth D\text{₹}D crore on the same exchange. The index return rr (in %) over the day is empirically modelled as r=α(FD)+ε,εN(0,σ2).r = \alpha(F - D) + \varepsilon, \qquad \varepsilon \sim \mathcal{N}(0,\sigma^2).

(a) Given a dataset of nn days, derive the ordinary-least-squares estimator α^\hat\alpha for the slope through the origin (no intercept). Show your derivation from minimising the sum of squared residuals. (6)

(b) For the three-day sample below, compute α^\hat\alpha numerically.

Day FDF-D (₹ cr) rr (%)
1 500 0.60
2 -300 -0.30
3 800 1.00

(6)

(c) A trade executed on day TT under the T+1 rolling settlement cycle passes through the exchange → clearing corporation → depository. Draw/describe the sequence of ownership and obligation transfer, naming the roles of the clearing corporation, NSDL/CDSL, and specifying on which calendar day securities are debited/credited. Explain why the clearing corporation interposes itself (novation) between buyer and seller. (8)


Question 3 — SEBI, Listing Thresholds & a Compliance Algorithm (18 marks)

A company seeks a main-board listing. Suppose (for this problem) the exchange enforces the following simplified quantitative criteria:

  • Minimum post-issue paid-up capital: ₹10 crore
  • Minimum market capitalisation: ₹25 crore
  • Minimum public shareholding (float): 25% of post-issue capital
  • Positive net worth in at least 2 of the last 3 financial years

(a) Write a Python function is_eligible(paid_up, market_cap, public_pct, net_worth_list) that returns True/False, correctly encoding all four rules (note the "2 of 3" logic). (8)

(b) A firm reports: paid-up = ₹12 cr, market cap = ₹40 cr, public float = 22%, net worth over 3 years = [−2, 5, 6] cr. Trace your function and state the eligibility verdict with the binding constraint(s). (4)

(c) SEBI is the regulator sitting above exchanges, depositories, brokers and mutual funds. Explain SEBI's role in listing and continuous disclosure, and argue why minimum-public-shareholding rules protect retail investors specifically (contrast with institutional investors). (6)


Answer keyMark scheme & solutions

Question 1

(a) Revenue rate g(δ)=2δAekδg(\delta) = 2\delta A e^{-k\delta}. g(δ)=2Aekδ+2δA(k)ekδ=2Aekδ(1kδ)g'(\delta) = 2A e^{-k\delta} + 2\delta A(-k)e^{-k\delta} = 2A e^{-k\delta}(1 - k\delta). (2) Set g=0g'=0: since 2Aekδ>02Ae^{-k\delta}>0, need 1kδ=0δ\*=1/k1-k\delta=0 \Rightarrow \boxed{\delta^\* = 1/k}. (2) Second derivative / sign test: g>0g'>0 for δ<1/k\delta<1/k and g<0g'<0 for δ>1/k\delta>1/k, so it's a maximum. (Or g(δ\*)=2Aekδ(k)(1kδ)2Akekδδ=1/k=2Ake1<0g''(\delta^\*)=2A e^{-k\delta}(-k)(1-k\delta) -2Ake^{-k\delta}\big|_{\delta=1/k} = -2Ake^{-1}<0.) (2)

(b) R(δ)=2δAekδcδ1R(\delta)=2\delta A e^{-k\delta} - c\delta^{-1}. R(δ)=2Aekδ(1kδ)+cδ2R'(\delta) = 2Ae^{-k\delta}(1-k\delta) + c\delta^{-2}. (3) FOC R(δ)=0R'(\delta)=0: 2Aekδ(1kδ)+cδ2=0.2Ae^{-k\delta}(1-k\delta) + \frac{c}{\delta^2}=0. This mixes an exponential term ekδe^{-k\delta} with a rational/polynomial term c/δ2c/\delta^2; such an equation cannot be inverted using elementary algebra (it is transcendental — no finite combination of algebraic operations isolates δ\delta). Hence numerical root-finding is required. (3)

(c) Let f(δ)=R(δ)=2Aekδ(1kδ)+cδ2f(\delta)=R'(\delta)=2Ae^{-k\delta}(1-k\delta)+c\delta^{-2}. f(δ)=2A[kekδ(1kδ)+ekδ(k)]2cδ3f'(\delta)=2A\big[-ke^{-k\delta}(1-k\delta) + e^{-k\delta}(-k)\big] -2c\delta^{-3} =2Aekδ[k(1kδ)k]2cδ3=2Aekδ(k2δ2k)2cδ3=2Ae^{-k\delta}\big[-k(1-k\delta)-k\big] -2c\delta^{-3} = 2Ae^{-k\delta}(k^2\delta -2k) - 2c\delta^{-3}. (2)

import math
A, k, c = 100, 2, 5
def f(d):  return 2*A*math.exp(-k*d)*(1-k*d) + c/d**2
def fp(d): return 2*A*math.exp(-k*d)*(k*k*d - 2*k) - 2*c/d**3
d = 0.6                     # start near 1/k = 0.5
for _ in range(100):
    step = f(d)/fp(d)
    d -= step
    if abs(step) < 1e-10:  # stopping criterion
        break
print(round(d,5))          # ~0.63988

Root δ\*0.640\delta^\* \approx 0.640. (3) Economic meaning: the profit-maximising half-spread once inventory-carrying cost is included is wider than the pure-revenue optimum 1/k=0.51/k=0.5 — the MM widens quotes to compensate for inventory risk. (1)

(d) Market makers post two-sided quotes continuously, guaranteeing that a counterparty exists at all times → they supply immediacy/liquidity and earn the spread as compensation for risk. A broker merely routes/agency-executes client orders (no obligation to quote, earns commission, takes no principal risk). A prop firm trades its own capital for directional/statistical profit and has no obligation to provide continuous liquidity. (Any 2 correct distinctions.) (4)


Question 2

(a) Model ri=αxi+εir_i=\alpha x_i+\varepsilon_i with xi=FiDix_i=F_i-D_i. Minimise S(α)=i(riαxi)2S(\alpha)=\sum_i (r_i-\alpha x_i)^2. dSdα=2xi(riαxi)=0\dfrac{dS}{d\alpha}=-2\sum x_i(r_i-\alpha x_i)=0. (3) xiri=αxi2α^=xirixi2\Rightarrow \sum x_i r_i = \alpha\sum x_i^2 \Rightarrow \boxed{\hat\alpha=\dfrac{\sum x_i r_i}{\sum x_i^2}}. (2) Second derivative 2xi2>02\sum x_i^2>0 \Rightarrow minimum. (1)

(b) xiri=500(0.6)+(300)(0.3)+800(1.0)=300+90+800=1190\sum x_i r_i = 500(0.6)+(-300)(-0.3)+800(1.0)=300+90+800=1190. (2) xi2=5002+3002+8002=250000+90000+640000=980000\sum x_i^2 = 500^2+300^2+800^2 = 250000+90000+640000=980000. (2) α^=1190/980000=0.001214...1.214×103 %/₹cr\hat\alpha = 1190/980000 = 0.001214...\approx \boxed{1.214\times10^{-3}\ \%/\text{₹cr}}. (2)

(c) Sequence (T+1):

  • Day T (trade day): order matched on the exchange order book; a contract note is generated. The clearing corporation performs novation — it becomes buyer to every seller and seller to every buyer, and computes net obligations (funds & securities). (2)
  • Day T+1 (settlement day): buyer's funds are debited and paid to the clearing corp; seller's securities are debited from their demat account at the depository (NSDL or CDSL) and, via the clearing corp, credited to the buyer's demat account the same day (T+1). (3)
  • Roles: Clearing corporation = guarantees settlement, manages risk/margins, nets obligations. NSDL/CDSL = hold securities in electronic (dematerialised) form and effect the book-entry transfer of ownership. (1)
  • Why novation: by interposing itself as central counterparty, the clearing corp removes counterparty default risk — neither party depends on the other's solvency; the CCP guarantees the trade, enabling anonymous trading and settlement finality. (2)

Question 3

(a) (8) — 2 marks each rule, correct "2 of 3" logic.

def is_eligible(paid_up, market_cap, public_pct, net_worth_list):
    c1 = paid_up >= 10                              # ₹10 cr
    c2 = market_cap >= 25                           # ₹25 cr
    c3 = public_pct >= 25                           # 25% float
    positive_years = sum(1 for nw in net_worth_list if nw > 0)
    c4 = positive_years >= 2                        # 2 of last 3
    return c1 and c2 and c3 and c4

(b) Trace with (12, 40, 22, [−2,5,6]):

  • c1: 12 ≥ 10 → True (1)
  • c2: 40 ≥ 25 → True (1)
  • c3: 22 ≥ 25 → False ← binding constraint (float too low) (1)
  • c4: positive years = 2 (5,6) ≥ 2 → True. Verdict: NOT eligible. Binding constraint = public shareholding of 22% < 25% minimum. (1)

(c) (6)

  • SEBI (statutory regulator under SEBI Act 1992) frames listing regulations (LODR) and mandates continuous disclosure: periodic financials, material-event disclosure, insider-trading rules, corporate-governance norms. It can suspend/delist non-compliant firms. (3)
  • Minimum-public-shareholding (e.g., 25%) ensures a genuine free float → better price discovery, liquidity, and prevents promoters from cornering the stock. Retail investors are price-takers with limited information and cannot negotiate access; adequate float and mandatory disclosure protect them from manipulation and illiquidity. Institutional investors have research teams, direct access, and bargaining power, so they are less dependent on these protections — hence the rule primarily shields the retail segment. (3)
[
  {"claim":"Q1a optimal half-spread delta* = 1/k for k=2 gives 0.5","code":"k=2; delta=1/k; result = (delta==Rational(1,2))"},
  {"claim":"Q1c Newton root of R'(delta) approx 0.63988","code":"import mpmath as mp; A,k,c=100,2,5; f=lambda d: 2*A*mp.e**(-k*d)*(1-k*d)+c/d**2; root=mp.findroot(f,0.6); result = abs(float(root)-0.63988)<1e-3"},
  {"claim":"Q2b alpha_hat = 1190/980000","code":"num=500*Rational(6,10)+(-300)*Rational(-3,10)+800*1; den=500**2+300**2+800**2; ah=num/den; result = (ah==Rational(1190,980000)) and abs(float(ah)-0.001214285)<1e-6"},
  {"claim":"Q3b firm NOT eligible due to public_pct 22<25","code":"paid,mc,pub,nw=12,40,22,[-2,5,6]; c1=paid>=10;c2=mc>=25;c3=pub>=25;c4=sum(1 for x in nw if x>0)>=2; result = (not (c1 and c2 and c3 and c4)) and (c3==False)"}
]