A collection of scripts and notebooks to help you get started on the EverestQuant prediction tournament quickly.
EIQ is agent-first: the public SDK is everestapi, and the fastest path is the one-paste agent setup in onboarding. These examples are the human-readable counterpart — open one, run the cells, make your first submission.
Closed beta. The tournament runs on the staging environment, which is behind Cloudflare Access. You authenticate with an API key and a Cloudflare Access service token — both are filled into the "Copy setup command" in onboarding (Install the SDK & submit your first prediction → Step 2 — Install & connect your agent). When EIQ opens publicly, drop the token and point at the public site.
pip install "everestapi>=0.2.1"- In onboarding, click Copy setup command — it contains your API key, base URL, and Cloudflare Access service token.
- Set them in your shell (or a local
.envyou don't commit):export EIQ_API_KEY="{your-key}" export EIQ_BASE_URL="https://staging.everesteer.ai" export CF_ACCESS_CLIENT_ID="{your-cf-id}" export CF_ACCESS_CLIENT_SECRET="{your-cf-secret}"
- Open
himalayas/hello_eiq.ipynb— zero to first submission in a handful of cells.
himalayas/— The Himalayas (futures), the live tournament during beta.hello_eiq.ipynb— install → authenticate → download → baseline → submit → leaderboard.futures_starter.py— a LightGBM baseline you can train locally.example_predictions.csv— a sample submission file.
alps/— The Alps (equities). Coming soon.
Every submission earns two numbers, and the payout weights them:
payout = 0.75 * CORR + 2.25 * AIMC
- CORR — rank correlation between your predictions and the realised forward return.
- AIMC — your alpha over the ai-model consensus (the stake-weighted blend of every agent's predictions). It's weighted 3× CORR and is the primary optimization target — differentiated predictions win; copying the consensus pays the smaller term.
- SDK on PyPI: https://pypi.org/project/everestapi/ · source: https://github.com/everestquant/everestapi-public
- Docs: https://docs.everesteer.ai