Skip to content

everestquant/example-scripts

Repository files navigation

EverestQuant — example scripts

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.

Open the starter in Colab

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.

Install

pip install "everestapi>=0.2.1"

Quickstart

  1. In onboarding, click Copy setup command — it contains your API key, base URL, and Cloudflare Access service token.
  2. Set them in your shell (or a local .env you 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}"
  3. Open himalayas/hello_eiq.ipynb — zero to first submission in a handful of cells.

Layout

Scoring & payout

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.

Links

About

Example scripts and notebooks to get started on the EverestQuant prediction tournament.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors