Back to Community

Team formation for Q2 competitions

FAFactorZoo
3d ago
2,898 views
42 posts
competition
teams
collaboration

With team competitions coming in Q2, I'm looking for teammates!

My background:

  • 5 years in systematic trading
  • Strong in feature engineering and risk management
  • Top 10% in Q1 competition
Looking for:

  • Someone with deep ML experience (especially NLP)
  • Someone with strong software engineering skills
DM me if interested!

41 Replies

25
BABayesianBull2d ago

For those wondering: yes, you can use external Python packages in submissions, but they must be in the approved list. No custom C extensions.

19
FAFactorZoo1d ago

The competition scoring docs could definitely be clearer. I spent 2 hours debugging what turned out to be a normalization issue.

28
SHSharpeShooter1d ago

For those new to the platform: start with the tutorial competition. It has a smaller dataset and more forgiving scoring.

3
ENEnsembleKing1d ago

Turnover control is crucial. My best performing model has a turnover of only 8% daily. High turnover strategies rarely survive transaction costs.

2
BUBugHunter9922h ago

For those new to the platform: start with the tutorial competition. It has a smaller dataset and more forgiving scoring.

6
SHSharpeShooter2d ago
import numpy as np

from scipy import optimize

def max_sharpe_portfolio(returns, rf=0.0): n = returns.shape[1] init_w = np.ones(n) / n bounds = [(0.0, 0.1)] * n constraints = {'type': 'eq', 'fun': lambda w: np.sum(w) - 1.0} result = optimize.minimize( lambda w: -(np.mean(returns @ w) - rf) / np.std(returns @ w), init_w, bounds=bounds, constraints=constraints ) return result.x

Here's a simple max-Sharpe optimizer for reference.

16
DADataSciPro1d ago

For those wondering: yes, you can use external Python packages in submissions, but they must be in the approved list. No custom C extensions.

13
BABayesianBull20h ago

Can confirm this approach works. I implemented something similar and jumped from rank 150 to rank 23 in two weeks.

1
SHSharpeShooter2d ago

Anyone else noticing that momentum factors have been working particularly well in the last month of competition data?

29
RIRiskQuant1d ago

Great discussion! This is why I love this community - knowledge sharing makes everyone better.

7
FAFactorZoo1d ago
edited

Great discussion! This is why I love this community - knowledge sharing makes everyone better.

Post a Reply