Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Tower Research Capital

      ¿Esta es tu empresa?

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Tower Research Capital | Empleos en Tower Research Capital | Sueldos en Tower Research Capital | Prestaciones en Tower Research Capital
      Entrevistas en Tower Research CapitalEntrevistas para el cargo de Quantitative Developer en Tower Research CapitalEntrevista en Tower Research Capital


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista para Quantitative Developer

      21 dic 2023
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia negativa
      Entrevista fácil

      Solicitud

      Me postulé a través de una agencia de empleos. El proceso tomó 4 semanas. Acudí a una entrevista en Tower Research Capital en dic 2023

      Entrevista

      Applied via staffing agency for experienced hires. Recruiter from Tower reached out within a week to schedule an interview with one of the teams. Interviewed online with a quant trader via Google Meet

      Preguntas de entrevista [1]

      Pregunta 1

      I work for a competitor of Tower. The interviewer's main goal was to fish for proprietary information about my current employer. Most questions were of the form "how does [current employer] model XYZ" or "how much money does [current employer] make in X product" or "what signals does your X system use? what else have you tried?"
      Responder pregunta
      1

      Otras evaluaciones sobre las entrevistas para el cargo de Quantitative Developer en Tower Research Capital

      Entrevista para Quantitative Developer

      11 feb 2024
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Acudí a una entrevista en Tower Research Capital

      Entrevista

      First round is phone Interview, which dives deep into work experience, find out your motivation. Second round hackerrank coding test, third round interview, there could be more but not revealed yet.

      Preguntas de entrevista [1]

      Pregunta 1

      What motivates you to move from your current job to Tower Research
      Responder pregunta

      Entrevista para Quantitative Developer

      16 oct 2019
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia neutra
      Entrevista promedio

      Solicitud

      Me postulé a través de un reclutador. El proceso tomó 2 semanas. Acudí a una entrevista en Tower Research Capital en oct 2019

      Entrevista

      I applied through a recruiter. I had an interview on the phone with a technical guy. The interviewer asked me questions about my background and experience. He sent me a test with 3 questions. I sent back a solution to each question but I didn't pass to the next round. I didn't get any feedback from them.

      Preguntas de entrevista [1]

      Pregunta 1

      Please complete questions 1, 2 and 3 below. For the Python problems, please use Python 2.7 and feel free to make use of any basic linear algebra routines available in NumPy, but please do not use any libraries that may solve any other non-trivial parts of the problems. For example, if any aspect of the problem requires you to compute a linear regression, then please do so from first principles rather than using the functionality built in in SciPy. 1) Write a C++ program which reads PITCH data from standard input and, at the end of the input, prints a table of the top ten symbols by executed volume to standard output. For example, your table should look something like this: SPY 24486275 QQQQ 15996041 XLF 10947444 IWM 9362518 MSFT 8499146 DUG 8220682 C 6756932 F 6679883 EDS 6673983 QID 6526201 The PITCH specification is available from the BATS website here. In short, you'll need to read Add Order messages and remember what orders are open so you can apply Order Cancel and Order Executed messages. Trade Messages are sent for orders which were hidden. You'll need to use both Order Executed and Trade Messages to compute total volume. For simplicity, ignore any Trade Break, long messages, Auction Fill and Routed Trade (‘B’, ‘r’, ‘d’, ‘C’, ‘R’). We've included a portion of live PITCH data in a file named pitch_example_data. (Note that each line in the sample file begins with an extra character, S, not mentioned in the specification. That can be ignored.) Along with your source code, you should provide a makefile with the target pitch_parser. Your compiled binary should be invoked as follows: cat pitch_example_data | ./pitch_parser 2) Given a feature variable, x, and a corresponding response, y, write a python program called local_linear.py to estimate the regression function f in the model y = f(x) + e using a local linear kernel estimator and k-fold cross-validation to select the bandwidth. For simplicity, you may assume that a Gaussian kernel should be used. You should also provide functions for predicting new values and plotting the estimated regression function. The required inputs to your program would be 2 files with n rows and 1 column of numeric data – one containing the x variable and the other containing the y variable – an output file path, and the number of folds. So at it's very basic level, the program could be invoked as follows python local_linear.py --x xin –-y yin –-output output –-num_folds 10 And in output, you would write a n x 1 column of numeric data containing the values of the fitted function evaluated at the points found in xin. Your program should also support the optional arguments –-plot, which would display a scatter plot of y against x with the fitted function drawn over it, as well as –-xout, to which the path to a further n x 1 file of numeric data would be provided so that output would contains the values of the fitted function evaluated at these points rather than the training points found in xin. Example data sets xin and yin are provided. 3) Let X be a n x p matrix of features and y be a n x 1 response vector. Suppose you are given X'X and X'y rather than the raw data. Write a python program to implement forward stepwise linear regression using the data you are given. Forward stepwise linear regression adds features iteratively so that feature added in each iteration reduces most residual sum of square. You may assume that the user has a predefined stopping point, k, for the number of features they want in their model. Your algorithm should be optimised for computational complexity and should deal with any potential numerical issues arising from (near) colinearity. Your program should be invoked as follows: python stepwise.py –-xx xx –-xy xy –-max_iterations 20 –-output output Where xx contains a p x p matrix of X'X and xy contains the p x 1 vector X'y. Output should contain a k x p csv where each row contains the fitted coefficients on each iteration of the forward stepwise search. For example, row k should contain the fitted coefficients after entering k features into the model. You should also provide a brief document explaining how your algorithm works. Example data is again provided.
      Responder pregunta
      19