Skip to main content

10 Flow Traders Quantitative Researcher (New Grad) Interview Questions (2026)

Flow Traders' new-grad quant researcher loop in 2026 is heavily mental-math and probability focused, with a trading simulation as the centerpiece. The firm specializes in ETF market-making with a strong European presence. Expect arithmetic speed tests, expected value calculations, and questions about trading decisions under uncertainty.

By Alex Chen, Founder, InterviewChamp.AI · Last verified

Loop overview

Recruiter call → online mental math + logic test → first-round phone (probability + EV calculations, 45 min) → onsite of three to four rounds: trading simulation (often a market-making game), probability deep-dive, mental math, fit conversation. Timeline 4-6 weeks. Flow Traders is heavy on ETF and ETP market-making, so questions sometimes reference these products.

Behavioral (3)

You are market-making on an ETF that tracks a basket of stocks. The basket value just jumped 1%. How quickly do you update your quote?

Frequently asked

Outline

ETF should reprice immediately — within microseconds for HFT firms. Discuss: monitor the underlying basket continuously; arbitrage opportunities exist if you lag; adverse selection if you don't update fast enough. Flow Traders specifically makes markets in ETFs, so they want to see you understand the arbitrage relationship to underlying assets.

Source: Glassdoor Flow Traders ETF microstructure round, 2026 ·

Tell me about a time you had to make a decision with incomplete information.

Frequently asked

Outline

STAR. Pick a real instance — research direction, project pivot, hiring choice. Show how you assessed the information you had, identified key uncertainties, made the call, and adapted. Flow Traders' core skill is trading under uncertainty — they want comfort with imperfect data.

Source: Glassdoor Flow Traders behavioral round, 2026 ·

Why Flow Traders rather than a larger market-maker?

Frequently asked

Outline

Specific reasons: ETF and ETP market-making specialization, smaller team means more direct ownership, European HQ (Amsterdam) offers different culture, multi-asset across equities/fixed income/commodities. Avoid the 'high pay' lead. Reference Flow Traders' role as a market-maker on major ETF exchanges.

Source: Glassdoor Flow Traders fit round, 2026 ·

Coding (LeetCode patterns) (2)

Write a function that returns the first non-repeating character in a string.

Occasionally asked

Outline

Two-pass. First pass: count occurrences in a hash map. Second pass: return the first character with count 1. O(n) time, O(k) space where k is alphabet size (often constant for ASCII). Edge case: no non-repeating character — return null or sentinel. Walk through example.

Source: Levels.fyi Flow Traders coding round, 2026 ·

Implement a class that supports insert, delete, and find-the-median in O(log n).

Occasionally asked

Outline

Two heaps (max-heap for lower half, min-heap for upper). Insert: add to one, rebalance. Delete: requires lazy deletion (mark for delete, pop when reaches top) or a sorted data structure. C++ multiset supports O(log n) insert/delete/find — easier to implement. Walk through both approaches.

Source: r/cscareerquestions Flow Traders coding round, 2026 ·

Technical (5)

I will give you $1 if you can correctly guess the next number I am thinking of between 1 and 100. What is the expected value of this game to me?

Frequently asked

Outline

Customer's optimal: guess uniformly. P(correct) = 1/100. Customer's EV = 1/100. So the operator pays out $0.01 in expectation. State the assumption (uniform guessing). Discuss what if you bias toward popular numbers (7, 42, 77) — could increase expected payout against humans with biases.

Source: Glassdoor Flow Traders EV round, 2026-Q1 ·

Compute 1/7 + 2/7 + 3/7 in your head.

Frequently asked

Outline

Sum = 6/7. State the answer immediately. Be ready for follow-up: convert to decimal — 6/7 ≈ 0.857. Mental shortcut for fractions: when numerators sum to denominator, the result is 1 minus the unused fractions. Practice these aggregations.

Source: Glassdoor Flow Traders mental math, 2026 ·

You are pricing an option that pays $10 if a fair coin comes up heads twice in a row in the next 10 flips, $0 otherwise. What is the fair price?

Frequently asked

Outline

P(no two consecutive heads in 10 flips) follows a Fibonacci-like recurrence. Let a_n = number of length-n sequences with no HH. Then a_n = a_{n-1} + a_{n-2}, with a_0=1, a_1=2. So a_10 = 144. Total sequences = 2^10 = 1024. P(no HH) = 144/1024 = 9/64. P(at least one HH) = 55/64. Fair price = 10 · 55/64 ≈ $8.59.

Source: Glassdoor Flow Traders pricing round, 2026 ·

Three doors. Behind one is a prize. You pick door 1. The host (who knows where the prize is) opens door 3, showing no prize. Should you switch to door 2?

Frequently asked

Outline

Monty Hall. Yes, switch. P(prize behind 1) = 1/3, so P(prize behind 2 or 3) = 2/3. Host removes 3 (where the prize is not), so all the 2/3 probability collapses to door 2. P(win by switching) = 2/3, P(win by staying) = 1/3. State the intuition clearly. Discuss why this is unintuitive (conflation of conditional and marginal).

Source: r/quant Flow Traders probability classic round, 2026 ·

If a stock has a 50% chance of going up 10% and a 50% chance of going down 10%, what is its expected return?

Frequently asked

Outline

Arithmetic: (0.5)·0.1 + (0.5)·(-0.1) = 0. So expected arithmetic return is 0. But geometric return: 0.5·log(1.1) + 0.5·log(0.9) ≈ 0.5·0.095 + 0.5·(-0.105) ≈ -0.005. State both concepts. Discuss volatility drag — geometric return is below arithmetic when variance is positive.

Source: Glassdoor Flow Traders volatility round, 2026 ·

Flow Traders interview tips

  • Mental math is non-negotiable. Memorize multiplication tables, squares, and quick percent conversions until automatic.
  • ETF and basket-arbitrage questions come up often. Read a basic intro to ETF mechanics, arbitrage, and creation/redemption before the loop.
  • Trading simulation rounds test risk discipline. Don't bet the house on one trade — interviewers watch position sizing.
  • Probability puzzles benefit from a 'pause and check for symmetry' habit before computation.
  • Be honest about asset class preferences in the fit round. Flow Traders has equity, fixed income, and commodity desks — your interest matters for placement.

Frequently asked questions

How long is Flow Traders' quant interview process in 2026?

Most candidates report 4-6 weeks from initial contact to offer. Onsite-to-decision is often within a week.

What is Flow Traders' main business?

ETF and ETP market-making, with secondary involvement in equity, fixed income, FX, and commodity markets. Headquartered in Amsterdam with global presence.

Does Flow Traders sponsor visas?

Yes. Amsterdam HQ supports EU; New York office supports US H1-B with standard lottery odds. Singapore and Hong Kong offer alternative paths.

What is Flow Traders' compensation structure?

Base + profit-sharing bonus. The firm offers strong upside tied to team and firm performance. Junior comp is competitive with US-based competitors despite EU HQ.

Can I reapply to Flow Traders after rejection?

Yes, after a 12-month cooldown. The firm keeps detailed interview notes.

Practice these live with InterviewChamp.AI

Real-time AI interview assistant that listens to your loop and helps you structure answers under pressure.

Practice these live with InterviewChamp.AI →