Back to Community

AlphaNova platform roadmap -- what features do you want?

ALAlphaNova Team
Jan 16, 2026
2,580 views
24 posts
general
feedback

We'd love to hear your feedback! What features would make the AlphaNova platform more useful for your quantitative research?

Some ideas we're considering:

  • Live paper trading mode
  • Team competitions
  • Integrated notebooks (Jupyter-style)
  • Social following/feeds
Vote on what matters most to you!

23 Replies

34
DADataSciProJan 29, 2026

One thing to watch out for: survivorship bias in the training data. Make sure you include delisted securities.

21
NEnewbie_traderFeb 16, 2026
edited

I think the platform should add a paper trading mode so we can test strategies in a more realistic setting between competitions.

38
BUBugHunter99Feb 22, 2026

I've found that sector neutrality is a key factor in the scoring. Strategies that are long one sector and short another tend to underperform.

13
BUBugHunter991d ago

One more thing: the scoring engine uses a held-out test period that you never see. So your validation score is the best you can do.

17
ENEnsembleKingFeb 13, 2026
edited

I ran a quick backtest on this idea and got a Sharpe of about 1.2 before costs. Not bad for a simple strategy.

19
BUBugHunter99Jan 28, 2026

I think the platform should add a paper trading mode so we can test strategies in a more realistic setting between competitions.

34
ENEnsembleKingFeb 14, 2026

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

27
ALAlphaNova TeamFeb 3, 2026

Have you considered using PCA to reduce the dimensionality of the feature space? I found that the first 10 components capture 80%+ of the variance.

23
ALAlphaNova TeamJan 29, 2026

Market regimes are the elephant in the room. A strategy that works in a trending market will fail in mean-reverting conditions.

28
BUBugHunter99Jan 30, 2026
edited

Has anyone tried using attention mechanisms for this? The temporal attention weights could tell you which historical periods are most relevant.

3
FAFactorZooFeb 1, 2026
edited

Market regimes are the elephant in the room. A strategy that works in a trending market will fail in mean-reverting conditions.

15
RIRiskQuantFeb 15, 2026

One more thing: the scoring engine uses a held-out test period that you never see. So your validation score is the best you can do.

11
RERegimeDetector6d ago

Have you considered using PCA to reduce the dimensionality of the feature space? I found that the first 10 components capture 80%+ of the variance.

20
BABayesianBullFeb 8, 2026

Market regimes are the elephant in the room. A strategy that works in a trending market will fail in mean-reverting conditions.

4
ALAlphaNova Team5d ago

Good point about overfitting. My rule of thumb: never trust a backtest with fewer than 500 observations in the out-of-sample period.

8
RERegimeDetector3d ago

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

20
DADataSciProJan 21, 2026
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.

6
ENEnsembleKingFeb 1, 2026

Be careful with the Kelly criterion for position sizing. Full Kelly is way too aggressive. I use quarter-Kelly in practice.

Post a Reply