Docs Pricing Get live access

Installation

Requirements

System requirements

EdgeProof itself is lightweight. The demanding part is the model that extracts signals from Discord text. You have two paths.

Path A: run a local model (private, free, needs a capable machine)

Extraction is a small job (pull a ticker, strike, and expiry out of a short message), so you do not need a large model. A 3B to 8B instruct model is plenty.

Your machine Realistic model Notes
8 GB RAM, no GPU 3B (for example Llama 3.2 3B, quantized) Works. Extraction takes a few seconds on CPU.
16 GB RAM, or Apple Silicon (M1 or newer) 7B to 8B (for example Llama 3.1 8B) Comfortable. Apple's unified memory handles this well.
Dedicated GPU with 8 GB+ VRAM 8B and up Fastest. Sub-second extraction.

Point EdgeProof at whichever model you pulled with OLLAMA_MODEL or LMSTUDIO_MODEL. See the Config reference.

Path B: use a hosted OpenAI-compatible endpoint (no local hardware)

If your machine can't run a local model, or you don't want to, set LLM_PROVIDER=openai-compatible and point LLM_API_BASE_URL, LLM_API_KEY, and LLM_MODEL at any OpenAI-compatible service. This removes the hardware requirement entirely.

Trade-offs to know: extraction requests (which include the Discord message text) leave your machine and go to that provider, and you pay that provider per token. Local models keep everything on your machine at zero marginal cost. Pick based on whether privacy or convenience matters more to you.

Not sure your machine can handle it?

Install Ollama, pull a small model, and run edgeproof doctor after setup. The llm.connectivity check confirms the model responds. If extraction is too slow for your taste, drop to a smaller model or switch to Path B.

Install

npm install -g edgeproof

Verify

edgeproof --version
edgeproof doctor

doctor checks Node version, your LLM, Alpaca credentials, Discord access, and clock skew. A clean install on an unconfigured machine will show one failure (config.load), which is expected until you run edgeproof init.

First-time setup

edgeproof init

The wizard walks through 8 steps:

  1. LLM: choose provider (Ollama, LM Studio, or compatible API) and verify connectivity
  2. Alpaca: paste your API key ID and secret, verify account access
  3. Discord source: choose browser-scraping (puppeteer) or bot token mode
  4. Signal channels: enter the Discord channel URLs or IDs to monitor
  5. Trading guardrails: position size budget, max contracts per underlying, stop-loss defaults
  6. Notifications: optional Telegram bot for trade alerts
  7. Review: shows your final .env before writing
  8. Smoke test: runs edgeproof doctor one more time to confirm everything is green

Config is written to .env in your working directory (0600 permissions). The wizard never asks for a license key. That comes later when you're ready for live trading.

Next steps