DataCrunch Equity Market Neutral #2
This weekly cross-sectional problem target the expected returns of the 3000 most liquid US equities.
Reward Scheme
# Reward Calculation
weekly_rewards = 1000
# 0 = worst, 1 = best
percentile_rank = your_rank / nb_participants
if percentile_rank <= 0.5:
reward = 0
else:
# excess above median, scaled 0–1
e = 2 * (percentile_rank - 0.5)
weight = e ** 20
reward = weekly_rewards * (weight / sum(participants_weights))
Dataset
X_train
X_trainy_train
y_trainX_test and y_test
X_test and y_testEmbargo
Tournament Structure
Data Splits
Submission Cut-off
Scoring and Evaluation
Computing Resources
Getting Started
Last updated
Was this helpful?
