← Back to Directory

Walleye Capital

Mid-sized

Walleye Capital is a global multi-strategy hedge fund and asset management firm founded in 2005 and headquartered in New York. It is known for employing quantitative and fundamental trading strategies across a range of asset classes and markets.

2 interview notes · updated Jul 2026

Walleye Capital·Software Engineer·Technical Phone Screen

Jun 2026
Technical screen at Walleye Capital where they handed me a set of React files with bugs baked in and asked me to work through them live. Eight categories of issues, one after another. Not a vibe check, more like a gauntlet.
  • You're given a React component where a useEffect or useCallback has a stale closure. Identify the symptom, root cause, and minimal fix.
  • A component is mutating state directly instead of using immutable updates. Walk through how you'd spot it and fix it.
  • List items in a component are using incorrect or unstable key props. What goes wrong and how do you fix it?
  • A component is causing a re-render storm due to unstable object or function references passed as props or through context. Debug it.
  • There's an async race condition in a useEffect. A fetch kicks off, the component unmounts or re-renders before it resolves, and stale results get applied. How do you handle it?
  • A form input is switching between controlled and uncontrolled. What's the bug and what's the fix?
  • Conditional rendering using && is showing a 0 on screen instead of nothing. Why does this happen and how do you fix it?
  • An event handler isn't firing correctly due to a binding issue or prop-drilling mistake. Identify and fix it.

“This one I actually felt okay on.”

View Post

Walleye Capital·Software Engineer·Technical Phone Screen

Apr 2026
SQL debugging round at Walleye Capital, live on actual files with real bugs planted in them. Not a whiteboard exercise, more like being handed a broken codebase and told to find the fire.
  • Given a SQL file with a bug involving an incorrect JOIN type, identify the symptom, root cause, and minimal fix.
  • Find and fix a NULL handling bug in a WHERE clause or aggregation within a provided SQL file.
  • Debug a SQL query where the GROUP BY columns don't match the SELECT list correctly.
  • Identify a bug caused by using HAVING instead of WHERE (or vice versa) in a SQL query.
  • Find a date or timezone-related bug in a SQL file and explain the minimal fix.
  • Debug a SQL query that has an implicit type cast causing incorrect behavior.
  • Identify and fix a correlated subquery error in a provided SQL file.
  • Find a bug related to incorrect window function frame boundaries in a SQL query.

“This one tripped me up more than it should have.”

View Post