Submit Signal
1
2
3
Round #47
Universe
S&P 500
Deadline
3/15/2026
Horizon
20 days
Status
Open
Download Feature Dataset
98 features503 stocksLast updated: 2026-03-12 14:00 UTC
Python SDK
python
from signalnet import Clientclient = Client(api_key="sk-your-key")# Download features for current roundfeatures = client.download_features(round_id=47)print(f"Shape: {features.shape}") # (503, 98)# Generate your predictionspredictions = your_model.predict(features)# Submitclient.submit(round_id=47, predictions=predictions)