← All articles
13 min read

The Jane Street Technical Interview Process in 2026: A Complete Insider Guide

Jane Street runs one of the most idiosyncratic and most lucrative interview loops on the street. Mental math, market-making games, and OCaml-flavored pair programming separate it from every other firm. Here is exactly what to expect.

The State of Jane Street Hiring in 2026

Jane Street enters 2026 as one of the most profitable and most selective employers in financial technology, with a partnership structure, a globally distributed trading operation, and a hiring funnel that filters more aggressively than almost any peer firm. The firm has continued to expand its software engineering, quantitative research, and trading headcount through 2025 and into 2026, with new graduate compensation that pushes past the public-market FAANG bands and senior compensation that competes directly with the highest-paying quantitative funds.

The Jane Street hiring funnel is also one of the most idiosyncratic on the street. There is no standardized algorithm interview that maps cleanly onto a FAANG loop. There is no LeetCode hard problem on Trees and Graphs at the end of a coding round. Instead, the firm builds its evaluation around live market-making games, probability puzzles delivered under adversarial follow-up, expression-oriented pair programming that draws stylistically on the firm's internal OCaml codebase, and a fit conversation that is meaningfully more substantive than a typical behavioral round.

What this means for candidates is that strong preparation for a peer firm does not transfer cleanly. Engineers with a top-tier track record at Stripe, Meta, or Two Sigma fail Jane Street loops regularly when the preparation is built around the wrong rounds. The firm is winnable, but only with deliberate preparation for the specific formats described below.

The Full Jane Street Interview Loop in 2026

A standard Jane Street software engineering loop in 2026 has the following structure, with light variation across the SWE, Trading, and Quantitative Research tracks:

  1. Application review and recruiter conversation (15 to 30 minutes): A brief introduction call followed by an assessment of fit for one of the three tracks.
  2. First-round technical phone screen (45 to 60 minutes): Coding and light probability for SWE candidates; pure probability and mental arithmetic for trader candidates.
  3. Second-round technical phone screen (60 to 90 minutes): A deeper coding pair-programming session for SWE candidates; an extended probability and market-making conversation for traders.
  4. Optional third phone screen (60 minutes): Used selectively for borderline calibration cases or specific team fits.
  5. Onsite, four to five rounds (4 to 5 hours total): One or two pair programming rounds, one or two probability and market-making game rounds, and a fit conversation. Round composition varies by track.
  6. Offer call and team matching: Conducted by the recruiter within a week of the onsite for successful candidates.

The total elapsed time runs four to six weeks on a rolling basis. The firm does not run a fixed superday cycle, which means a strong candidate with a competing deadline can sometimes compress the loop to under three weeks by communicating the timeline clearly to the recruiter. Internship hiring for the following summer typically opens in mid-summer of the preceding year, and slots fill quickly — candidates applying in late October or November consistently see worse outcomes than candidates applying in July or August.

The Phone Screens: Probability Plus Pair Programming

The Jane Street phone screen in 2026 is the round where the firm filters most aggressively. SWE candidates face a 45 to 60 minute first round that opens with a brief introduction, then moves directly into a coding pair-programming exercise on a shared editor. The problem is usually short — implementing a small recursive data structure, writing a parser, building a small interpreter for a constrained DSL — but the bar on the resulting code is high. Interviewers look for code that handles the edge cases cleanly, expresses the algorithm at the right level of abstraction, and reads well to someone who did not write it.

Trader candidates run a parallel first-round funnel that replaces the coding exercise with pure probability and mental-arithmetic questions. Expect multi-digit multiplication delivered verbally with a strict time budget, expected-value problems on coin and dice variants, and conditional probability questions that demand a clean Bayesian update under follow-up pressure. The interviewer is not hostile but is deliberately adversarial — pushing on every answer to test whether the candidate can defend the reasoning or whether the answer was a guess.

The second-round phone screen runs 60 to 90 minutes and goes deeper on the same dimensions. For SWE candidates, the coding problem extends to a longer pair-programming session that exercises problem decomposition and the ability to refactor mid-solution. For trader candidates, the round introduces simple market-making concepts: quoting a two-sided market on a random variable, updating the quote as new information arrives, and managing inventory risk across a sequence of trades. Both tracks weight clear verbal reasoning as heavily as the technical answer itself.

The Market-Making Game: Calibration Under Pressure

The market-making game is the single most distinctive component of the Jane Street onsite and appears in some form for every trader, researcher, and senior SWE candidate. The setup is conceptually simple. The interviewer specifies a random variable whose distribution is partially known — the number of trees in Central Park, the population of a small country, the outcome of a sequence of dice rolls. The candidate quotes a two-sided market: a bid price at which the candidate will buy a contract that pays out the eventual value, and an ask price at which the candidate will sell the same contract.

The interviewer then trades against the quote at the candidate's prices. If the spread is too wide, the interviewer refuses to trade and asks the candidate to tighten it. If the spread is too narrow, the interviewer aggressively buys or sells, and the candidate has to manage the resulting inventory risk. New information is then revealed — a hint about the distribution, an external constraint, an update to the candidate's prior — and the candidate has to re-quote. The cycle repeats for several rounds.

The skill being evaluated is calibration under uncertainty. The strongest candidates set a fair value that reflects an honest assessment of the distribution, set a spread that reflects the candidate's uncertainty about that fair value, update both numbers cleanly when new information arrives, and articulate the reasoning at every step. Weak candidates either set spreads so wide that no trading is possible, or so narrow that an adversarial counterparty extracts large losses immediately. Both failure modes produce strong negative signal.

TechScreen provides invisible, real-time reasoning support through Jane Street's market-making and probability rounds. Start free with 3 tokens.

Get started free →

OCaml-Flavored Pair Programming

The pair programming rounds at the Jane Street onsite are coding rounds, but they do not look like a typical FAANG coding round. The problems are usually expression-oriented and lend themselves naturally to a functional decomposition: building a small parser for a constrained grammar, implementing tree manipulations with structural recursion, constructing an interpreter for a tiny domain-specific language, building immutable data structures with the right asymptotic properties.

Candidates are not required to write OCaml. The firm's published guidance explicitly discourages signaling moves where the candidate codes in OCaml without genuine fluency, and Python remains the most common choice for the SWE loop in 2026. What the round does reward is a way of thinking that maps cleanly onto a functional codebase: preferring immutability where possible, decomposing problems into small pure functions, using algebraic data types rather than tagged unions of mutable state, and writing code that reads as a sequence of transformations rather than a sequence of mutations.

For candidates who want to demonstrate the style without committing to OCaml, a small example of the pattern interviewers look for — a list-based binary tree with a structurally recursive map operation, written in OCaml for clarity:

type 'a tree =
  | Leaf
  | Node of 'a tree * 'a * 'a tree

let rec map_tree (f : 'a -> 'b) (t : 'a tree) : 'b tree =
  match t with
  | Leaf -> Leaf
  | Node (l, x, r) -> Node (map_tree f l, f x, map_tree f r)

let rec fold_tree (f : 'b -> 'a -> 'b) (acc : 'b) (t : 'a tree) : 'b =
  match t with
  | Leaf -> acc
  | Node (l, x, r) ->
    let acc = fold_tree f acc l in
    let acc = f acc x in
    fold_tree f acc r

The same shape of solution in Python, with explicit pattern matching, scores equivalently in the round as long as the candidate keeps the decomposition clean and the helper functions pure where possible.

The Probability and Puzzle Rounds

Probability puzzles appear in every Jane Street onsite, regardless of track, and they are delivered with adversarial follow-up questioning that distinguishes the firm's interview style from almost every peer. The interviewer states a problem, listens to the answer, and then probes — sometimes because the answer is wrong, sometimes because the reasoning is unclear, sometimes simply to test whether the candidate can defend a correct answer against pushback. The candidate has to engage with each follow-up on its merits rather than reflexively changing the position.

Topic areas that appear consistently across 2026 Jane Street probability rounds:

  • Expected value on multi-stage games with optional stopping
  • Conditional probability with explicit Bayesian updating when new information arrives
  • The linearity of expectation applied to non-obvious counting problems
  • Variance and standard deviation calculations on simple discrete distributions
  • Classic puzzles drawn from coins, dice, decks of cards, and ball-and-urn formats
  • Markov chain reasoning on small state spaces, including absorption probabilities and expected hitting times
  • Game theory and equilibrium reasoning on two-player zero-sum games

Preparation approach: work through a standard quant interview primer with strict attention to the verbal habit of narrating the decomposition. The narration is graded as heavily as the final answer. Candidates who compute silently and announce a single number are routinely scored below candidates who walk through the problem step by step, even when both arrive at the same answer.

The Fit Conversation

The fit conversation at the end of the Jane Street loop is not a generic behavioral round. It is a substantive evaluation of the candidate's curiosity, intellectual honesty, and ability to engage thoughtfully across a wide range of topics — many of them outside the technical scope of the rest of the loop. Interviewers ask about the candidate's background, what the candidate finds genuinely interesting, how the candidate thinks about open-ended problems, and how the candidate handles disagreement with smart colleagues.

The firm's evaluation rubric weights honesty heavily. Candidates who attempt to perform a polished, rehearsed-sounding personality consistently underperform candidates who speak naturally about real interests, acknowledge what they do not know, and engage with the interviewer's questions as questions rather than as prompts to deliver memorized answers. The fit conversation is the round where over-coached candidates lose offers they would otherwise have received.

Jane Street Compensation in 2026: Top of Market

Jane Street pays at the top of the market in 2026, with new graduate compensation that meaningfully exceeds the public-market FAANG bands and senior compensation that competes directly with the most aggressive quantitative funds. The firm does not pay in equity because it operates as a partnership rather than a corporation. The total compensation package is base salary plus a discretionary annual cash bonus, with the bonus carrying the majority of the variance at senior levels.

Approximate total compensation ranges at Jane Street for the software engineering track in 2026, aggregated from public reporting and self-disclosed offers:

LevelYears experienceBase salaryTotal compensation
L1 (new grad SWE)0-2$200k - $300k$380k - $475k
L2 (mid-level SWE)2-4$250k - $350k$475k - $650k
L3 (senior SWE)5-8$300k - $400k$650k - $950k
L4 (staff SWE)8+$350k - $475k$900k - $1.4M
L5+ (principal, partner-track)10+$400k+$1.2M - $2M+

Trader and Quantitative Researcher compensation runs above the SWE bands at the senior and staff tiers, with substantially higher bonus variance tied directly to trading performance. Negotiation at Jane Street is more constrained than at peer firms because the bands are already at the top of the market and the bonus is discretionary, but recruiter conversations about timing, sign-on, and start date are routine. The most reliable lever is a credible competing offer from a peer firm that the recruiter can use to justify a band-level adjustment internally.

The Final Week Before Your Jane Street Onsite

The week before a Jane Street onsite is consolidation, not new material. The checklist that consistently produces strong outcomes in 2026:

  • Run at least three full timed market-making mock games out loud, ideally with a partner who can play the adversarial counterparty. Record the audio and review the verbal habits.
  • Work through twenty timed probability puzzles with explicit narration of the decomposition. Focus on conditional probability, expected value with optional stopping, and Markov chain hitting times.
  • Solve five to eight pair-programming-style problems in the candidate's preferred language with explicit attention to functional decomposition. Tree and parser problems are the best practice surface.
  • Re-read the Jane Street probability and markets guide that the firm publishes publicly, and confirm fluency with the basic market-making vocabulary it introduces.
  • Test the interview setup on the exact platform Jane Street uses (typically Zoom plus a shared editor, with the interviewer present throughout). Confirm the camera, microphone, and bandwidth on the actual machine that will be used on the day. If using AI assistance, validate invisibility on the exact platform — Zoom screen sharing has specific detection patterns worth understanding in advance.
  • Sleep. The four to five hour Jane Street onsite is intellectually dense, and the market-making rounds in particular reward focused energy.

One specific operational note for 2026 Jane Street loops: interviewers explicitly probe whether the candidate can hold a position against pushback. Pushback is not evidence of a wrong answer. The standard pattern is for the interviewer to push on every answer regardless of correctness, with the goal of testing whether the candidate can articulate the reasoning clearly. Candidates who immediately abandon a correct answer at the first pushback score below candidates who calmly walk through the reasoning a second time, and well below candidates who can recognize when the pushback is substantive and update accordingly.

TechScreen offers invisible, real-time AI support through every round of the Jane Street loop — coding, probability, and market-making alike. Start free with 3 tokens.

Get started free →

Frequently Asked Questions

Do I need to know OCaml to interview at Jane Street?

No. Jane Street's published guidance is explicit: most software engineers hired arrive without prior OCaml or functional programming experience, and the firm teaches it internally. Candidates are encouraged to code in the language they are most fluent in during the interview. The pair programming rounds do reward a functional, expression-oriented style of thinking, but fluency in the syntax itself is not graded.

How important is mental math in the 2026 Jane Street interview?

Mental math has been de-emphasized for software engineering candidates in 2026, though it still appears for trader and researcher tracks. The firm's current guidance frames the SWE loop as a programming-and-problem-solving evaluation rather than an arithmetic test. Trader candidates, in contrast, still face dedicated mental-arithmetic rounds with multi-digit multiplication, fractions, and percentage operations under strict time pressure.

What is the Jane Street market-making game actually like?

The market-making game places the candidate in the role of a market maker quoting a two-sided bid and ask on a random variable whose distribution is partially specified. The interviewer trades against the candidate at the quoted prices, then reveals new information that updates the distribution, and the candidate has to re-quote. The skill being tested is calibration under uncertainty and the ability to update beliefs cleanly when new information arrives.

How hard is the Jane Street interview compared to FAANG?

Jane Street's interview is meaningfully harder than a typical FAANG loop for candidates without quant exposure, and roughly comparable in raw difficulty for candidates with strong probability backgrounds. The differentiators are the live market-making game, the probability puzzles delivered under adversarial follow-up questioning, and the expectation of clear verbal reasoning throughout. Strong FAANG candidates fail Jane Street loops regularly when they do not prepare for the firm's specific format.

What programming languages are accepted in the Jane Street interview?

Python is the most common choice for the SWE loop in 2026, followed by C++, Java, and OCaml itself for candidates who already know it. The firm's guidance discourages using OCaml as a signaling move — coding in OCaml when the candidate is not fully fluent produces weaker signal than coding cleanly in a familiar language. Choose the language the candidate writes daily.

How long is the Jane Street interview process?

The full Jane Street loop in 2026 typically runs four to six weeks from first application to offer, on a rolling admissions basis. The firm interviews continuously rather than running fixed superdays, which means timeline compression is possible for candidates with competing offers. Internship slots for the next summer cohort tend to fill by late October, so applying in July or August produces meaningfully better outcomes than applying in the autumn.

What compensation does Jane Street pay engineers in 2026?

Jane Street pays at the top of the market in 2026. New graduate L1 software engineers see median total compensation around $380,000, with offers extending past $475,000 for the strongest candidates. Senior and staff engineers regularly clear $700,000 to $1.4 million in total compensation, almost all of which is base salary plus discretionary cash bonus. There is no public equity component because Jane Street is a partnership rather than a corporation.

Does Jane Street hire interns and how competitive is the process?

Yes. Jane Street runs trading, quantitative research, and software engineering internship programs in both New York and London, with applications opening on a rolling basis in mid-summer for the following year's cohort. Acceptance rates are well under two percent. The internship is the firm's primary entry point for new graduate hiring, and conversion rates from intern to full-time offer are extremely high for candidates who perform well during the program.

Ready to use AI assistance in your next interview?

TechScreen is the invisible AI assistant trusted by engineers interviewing at Google, Meta, Amazon, and hundreds of other companies. Start with 3 free tokens — no credit card required.

Ace your next interview →