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 Client
client = Client(api_key="sk-your-key")
# Download features for current round
features = client.download_features(round_id=47)
print(f"Shape: {features.shape}") # (503, 98)
# Generate your predictions
predictions = your_model.predict(features)
# Submit
client.submit(round_id=47, predictions=predictions)