TL;DR
Morgan Stanley’s new grad SDE process is a 4-round filter: resume screen, OA, technical phone, onsite. The real cut isn’t coding—it’s judgment under pressure, where 70% of rejects fail on edge-case reasoning, not syntax. Prepare for Low Latency Systems and Market Data problems, not just Leetcode Medium.
Who This Is For
This is for final-year CS majors or 2025 grads targeting Morgan Stanley’s SDE new grad role, with 0-1 years of experience, strong in data structures, and weak on trading domain knowledge. If you’ve only grinded Leetcode without touching concurrency or time-series data, you’re the target audience.
How many rounds are in the Morgan Stanley new grad SDE interview?
There are 4 rounds: resume screen, 90-minute OA, 45-minute technical phone, and a 4-hour onsite with 2 coding + 2 systems sessions.
The OA is the first real filter. In 2023, a hiring manager in NYC noted that 60% of OA takers failed to pass the bar on at least 2/3 problems, with the hardest question (a variant of "Minimum Time to Process All Tasks with Cooldown") being the primary eliminator.
The phone screen is a 45-minute Leetcode Medium with a twist: they expect you to explain time complexity tradeoffs verbally, not just write code. The onsite is where domain knowledge matters—expect Low Latency Systems (e.g., order matching engine) and Market Data (e.g., real-time analytics) design questions. The problem isn’t your ability to code—it’s your ability to think like an engineer in a trading environment.
What is the Morgan Stanley new grad SDE interview timeline?
From application to offer, the timeline is 4-6 weeks: 1 week for resume review, 1 week for OA, 1-2 weeks for phone screen, and 2-3 weeks for onsite scheduling.
In a Q4 2024 debrief, a recruiter mentioned that delays often happen between the phone screen and onsite due to hiring manager availability—candidates who followed up with a concise email (subject: "Follow-up on SDE New Grad Process") got scheduled 3-5 days faster. The OA is typically available within 48 hours of application submission, and results are sent within 5-7 business days.
The onsite is the bottleneck: Morgan Stanley’s NYC office books slots in batches, so early applicants (August-October) get faster turnarounds than late ones (November-January). The timeline isn’t the issue—it’s the radio silence. If you haven’t heard back after 7 days post-OA, it’s a rejection, not a delay.
What questions are asked in the Morgan Stanley SDE new grad OA?
The OA consists of 3 coding problems in 90 minutes, with a focus on arrays, strings, and graphs, and one problem always involves time-series or sliding window optimization.
A 2024 candidate reported the OA included: (1) a string manipulation problem (e.g., "Longest Substring with At Most K Distinct Characters"), (2) a graph problem (e.g., "Course Schedule II" with a twist on cycle detection), and (3) a time-series problem (e.g., "Maximum Profit from Stock Prices with Cooldown").
The twist isn’t the problem type—it’s the constraint: Morgan Stanley’s OA problems often include edge cases that break greedy approaches, forcing you to think in DP or two-pointer techniques. The problem isn’t your speed—it’s your ability to recognize when brute force won’t scale.
What is the Morgan Stanley new grad SDE onsite interview structure?
The onsite is 4 hours: 2 coding rounds (45 mins each), 1 low-latency systems design round (60 mins), and 1 market data/real-world problem round (60 mins).
In a 2025 onsite debrief, a hiring manager noted that the coding rounds are Leetcode Hard-level, but the real differentiator was the systems design round, where candidates were asked to design a real-time order matching engine. The market data round often involves a problem like "Design a system to process and analyze real-time stock tick data," where you’re expected to discuss tradeoffs between latency, throughput, and consistency.
The problem isn’t your knowledge of design patterns—it’s your ability to apply them under trading constraints (e.g., microsecond latency requirements). The signal they’re looking for isn’t your ability to recite CAP theorem—it’s your ability to prioritize latency over consistency in a trading context.
What is the Morgan Stanley new grad SDE salary for 2026?
The 2026 new grad SDE base salary in NYC is $135,000-$145,000, with a $25,000-$30,000 signing bonus and a $10,000-$15,000 discretionary bonus.
In a Q1 2025 comp discussion, a Morgan Stanley HR lead mentioned that the base was increased by $10K from 2024 to match Google’s new grad offers, but the signing bonus remained flat due to "market conditions." The discretionary bonus is tied to performance in the first 6 months, and top performers (top 20%) can expect the higher end.
The problem isn’t the base salary—it’s the lack of negotiation leverage: Morgan Stanley’s offers are non-negotiable for new grads, so the only variable is the signing bonus, which is tied to early acceptance (sign within 7 days for the full amount).
How do I prepare for Morgan Stanley low latency systems design questions?
Focus on order matching engines, real-time risk systems, and market data processing pipelines, with an emphasis on microsecond-level optimizations.
In a 2024 onsite, a candidate was asked to design an order matching engine with the following constraints: 100K orders/sec, sub-100 microsecond latency, and no downtime. The expected answer wasn’t a generic "use Kafka and Redis"—it was a deep dive into in-memory data structures (e.g., B-trees for order books), lock-free algorithms, and hardware optimizations (e.g., NIC offloading).
The problem isn’t your ability to draw boxes and arrows—it’s your ability to discuss how you’d optimize for tail latency (P99.9) in a trading environment. The signal they’re looking for isn’t your knowledge of distributed systems—it’s your ability to think like a low-latency engineer.
Preparation Checklist
- Complete 50 Leetcode Mediums and 20 Hards, with a focus on arrays, strings, graphs, and sliding window problems.
- Study 3 low-latency systems design problems: order matching engine, real-time risk system, market data pipeline.
- Practice explaining time complexity tradeoffs verbally—Morgan Stanley interviewers will interrupt you to test depth.
- Review C++/Java concurrency concepts: mutexes, condition variables, lock-free data structures, and memory barriers.
- Mock onsite with a focus on edge cases—70% of rejects fail here, not on the happy path.
- Work through a structured preparation system (the PM Interview Playbook covers low-latency systems design with real debrief examples from trading firms).
- Research Morgan Stanley’s tech stack: Java, C++, Kafka, and in-house trading platforms.
Mistakes to Avoid
- BAD: Brute-forcing the OA problems without considering edge cases.
GOOD: Always ask, "What’s the worst-case input?" and optimize for it. Morgan Stanley’s OA is designed to catch candidates who don’t think about scalability.
- BAD: Describing a generic distributed system for the low-latency design round.
GOOD: Dive into single-node optimizations (e.g., cache locality, SIMD instructions) and justify why distribution isn’t the answer for sub-100 microsecond latency.
- BAD: Assuming the market data problem is just a coding question.
GOOD: Discuss the tradeoffs between batch and stream processing, and how you’d handle late-arriving data in a real-time analytics system.
FAQ
What is the acceptance rate for Morgan Stanley new grad SDE?
The acceptance rate is ~2-3% based on 2024 application volumes (10K+ applicants for ~200-300 roles). The real bottleneck is the OA: only ~30% pass, and of those, ~50% make it to onsite.
How long does it take to hear back after the Morgan Stanley OA?
Results are typically sent within 5-7 business days. If you don’t hear back within 10 days, it’s a rejection—Morgan Stanley doesn’t send rejections for OA failures, they just ghost.
Can I negotiate the Morgan Stanley new grad SDE offer?
No. Base salary and discretionary bonus are fixed, but the signing bonus is negotiable if you have competing offers (e.g., from Jane Street or Optiver). Accept within 7 days for the full signing bonus.
Ready to build a real interview prep system?
Get the full PM Interview Prep System →
The book is also available on Amazon Kindle.