Level 2 — RecallHow to Trade — Execution & Platforms

How to Trade — Execution & Platforms

30 minutes50 marksprintable — key stays hidden on paper

Level 2 Examination — Recall & Standard Problems

Time Limit: 30 minutes
Total Marks: 50


Instructions: Answer all questions. Show working for all numerical problems. Use ...... notation where required. Round monetary answers to 2 decimals unless stated otherwise.


Q1. Define the following order types and state one situation where each is appropriate: (a) Market order, (b) Limit order, (c) Stop-loss order. (6 marks)

Q2. State the standard position sizing formula based on risk per trade. A trader has a capital of 2,00,000₹2,00,000 and risks 1%1\% of capital per trade. If the entry price is 500₹500 and the stop-loss is at 480₹480, calculate the number of shares to buy. (6 marks)

Q3. Define leverage and margin. If a broker offers 5×5\times leverage, how much margin (in ₹) is required to take a position worth 1,50,000₹1,50,000? (5 marks)

Q4. What is a margin call? Briefly explain what "auto square-off" means and why brokers enforce it. (5 marks)

Q5. Under SEBI peak margin rules for intraday trading, explain in one or two sentences what "peak margin" means and how it changed the intraday leverage available to retail traders. (4 marks)

Q6. Define the bid-ask spread. A stock has a bid of 250.20₹250.20 and an ask of 250.50₹250.50. Calculate: (a) the spread in ₹, (b) the spread as a percentage of the ask price. (5 marks)

Q7. A trader buys 300 shares at the ask price of 100.40₹100.40 and immediately sells at the bid price of 100.10₹100.10. Ignoring brokerage, calculate the total execution cost (loss) due to the spread. (5 marks)

Q8. Define hotkeys in the context of fast order entry, and list two advantages of using them for an active intraday trader. (4 marks)

Q9. List any four components you would set up on a charting platform before starting to trade. (4 marks)

Q10. Define a price alert / notification. Give two reasons why alerts help a trader who manages multiple positions simultaneously. (6 marks)


End of Paper

Answer keyMark scheme & solutions

Q1. (6 marks) — 2 marks each (1 for definition, 1 for use case)

  • (a) Market order: An order to buy/sell immediately at the best available current price. Definition (1). Use: when immediate execution matters more than price, e.g., exiting a fast-moving position (1).
  • (b) Limit order: An order to buy/sell at a specified price or better; executes only if the market reaches that price. (1). Use: entering at a precise, favourable price (1).
  • (c) Stop-loss order: A resting order that triggers (becomes market/limit) once price hits a set stop level, to cap losses. (1). Use: automatically exiting a losing trade to limit downside (1).

Q2. (6 marks)

Formula (2 marks): Shares=Capital×Risk%EntryStop\text{Shares} = \frac{\text{Capital} \times \text{Risk\%}}{\text{Entry} - \text{Stop}}

  • Risk amount =2,00,000×0.01=2,000= 2{,}00{,}000 \times 0.01 = ₹2{,}000 (1)
  • Risk per share =500480=20= 500 - 480 = ₹20 (1)
  • Shares =2000/20=100 shares= 2000 / 20 = \mathbf{100 \text{ shares}} (2)

Why: Position size is set so that hitting the stop loses exactly the pre-defined risk amount.


Q3. (5 marks)

  • Leverage: Ability to control a position larger than one's own capital using borrowed funds from the broker. (1.5)
  • Margin: The trader's own capital deposited/blocked as collateral for a leveraged position. (1.5)
  • Margin required =1,50,0005=30,000= \dfrac{1{,}50{,}000}{5} = \mathbf{₹30{,}000} (2)

Q4. (5 marks)

  • Margin call (2.5): A broker's demand that the trader add funds when account equity/margin falls below the required maintenance level, because losses have eroded the collateral.
  • Auto square-off (2.5): The broker automatically closes (exits) open positions when margin is insufficient or at intraday cut-off time, to protect against further losses / recover its lent funds.

Q5. (4 marks)

  • Peak margin (2): SEBI rule requiring brokers to collect the highest margin obligation observed during randomly sampled snapshots of the trading day (upfront), rather than only end-of-day margin.
  • Effect (2): It reduced the excess intraday leverage brokers could offer; traders must now have full stipulated (VaR + ELM) margin upfront, cutting intraday leverage significantly.

Q6. (5 marks)

  • Definition (2): The bid-ask spread is the difference between the highest price buyers will pay (bid) and the lowest price sellers will accept (ask).
  • (a) Spread =250.50250.20=0.30= 250.50 - 250.20 = \mathbf{₹0.30} (1.5)
  • (b) 0.30250.50×100=0.1198%0.12%\dfrac{0.30}{250.50} \times 100 = \mathbf{0.1198\% \approx 0.12\%} (1.5)

Q7. (5 marks)

  • Cost per share =100.40100.10=0.30= 100.40 - 100.10 = ₹0.30 (2)
  • Total cost =0.30×300=90= 0.30 \times 300 = \mathbf{₹90} (3)

Why: Buying at ask and selling at bid crosses the spread on both sides — the whole spread is lost per share.


Q8. (4 marks)

  • Definition (2): Hotkeys are pre-configured keyboard shortcuts that instantly send pre-set orders (buy/sell, cancel, close) without navigating menus.
  • Advantages (1 each): (i) Faster execution in fast markets; (ii) fewer manual entry errors / consistent sizing; (also acceptable: hands stay off the mouse, reduced slippage).

Q9. (4 marks) — 1 mark each (any four):

Timeframe/chart type, indicators (e.g., moving averages, RSI), watchlist/symbols, drawing tools (support/resistance, trendlines), volume panel, colour/layout template, alerts.


Q10. (6 marks)

  • Definition (2): A price alert/notification is an automated signal (pop-up, sound, SMS, app push) triggered when a specified condition — such as price crossing a level — is met.
  • Reasons (2 each): (i) The trader cannot watch all charts at once, so alerts flag opportunities/exits without constant monitoring; (ii) they reduce missed entries/exits and emotional/manual errors, freeing attention across many positions.

[
  {"claim":"Q2 position size = 100 shares","code":"capital=200000; riskpct=0.01; entry=500; stop=480; shares=(capital*riskpct)/(entry-stop); result=(shares==100)"},
  {"claim":"Q3 margin required = 30000","code":"margin=150000/5; result=(margin==30000)"},
  {"claim":"Q6 spread=0.30 and pct approx 0.1198","code":"spread=Rational('250.50')-Rational('250.20'); pct=spread/Rational('250.50')*100; result=(spread==Rational('0.30') and abs(float(pct)-0.1198)<0.001)"},
  {"claim":"Q7 total spread cost = 90","code":"cost=(Rational('100.40')-Rational('100.10'))*300; result=(cost==90)"}
]