The Trial plan needs no Whop registration and has no time limit — install once and you're ready to run (about 5 minutes total). A Whop OAuth login is only required to unlock the paid plans (Lifetime / Annual / Monthly). Full instructions live in the official docs.
For complete instructions, parameters, and the full troubleshooting guide, see the official documentation.
Open Documentation →Run the following in your terminal. The installer downloads the latest binary into /usr/local/bin.
curl -sSL https://alforge-labs.github.io/install.sh | bash
Run this in PowerShell (no admin needed). Installs into %LOCALAPPDATA%\Programs\alpha-forge and updates PATH.
irm https://alforge-labs.github.io/install.ps1 | iex
Prefer a manual setup? Download the latest per-platform binaries directly from GitHub Releases (latest).
Once installed, the Trial plan lets you immediately run alpha-forge backtest run, alpha-forge optimize run, alpha-forge optimize walk-forward, and more. The only Trial limits are: data capped at 2023-12-31, optimization capped at 50 trials, and no Pine Script export — everything else mirrors the paid plans.
# Example: run a backtest right away (Trial plan, no Whop registration)
alpha-forge system init # initialize a working directory
alpha-forge data fetch SPY --period 5y # auto-fetch data up to 2023-12-31
alpha-forge backtest run SPY --strategy sma_crossover_v1
To lift the Trial limits, purchase a paid plan on Whop (Lifetime / Annual / Monthly) and then run the command below. The OAuth 2.0 PKCE flow opens your browser automatically; credentials are cached at ~/.config/forge/credentials.json.
alpha-forge system auth login
Verify the activated membership with:
alpha-forge system auth status
See Trial Limits for the full feature comparison between Trial and paid plans.
alpha-visualizer is an OSS Python package (PyPI, Apache-2.0-licensed) that renders the backtest results
produced by alpha-forge in your browser. It runs standalone — no dependency on alpha-forge itself — so you can add it any time.
# uv (recommended)
uv tool install alpha-visualizer
# pip
pip install alpha-visualizer
See the alpha-visualizer installation guide for full usage and configuration. PyPI: pypi.org/project/alpha-visualizer / GitHub: alforge-labs/alpha-visualizer
alpha-strike is a self-hosted webhook bridge that receives TradingView alerts and routes orders to moomoo (US / HK stocks, crypto) and OANDA (FX / CFD), available as an OSS Python package (PyPI, Apache-2.0-licensed). The repo ships a reference architecture for running on Oracle Cloud Always Free + Cloudflare Tunnel + WAF at zero monthly cost.
# uv (recommended)
uv tool install alpha-strike
# pipx for a global CLI
pipx install alpha-strike
# pip
pip install alpha-strike
# Run
WEBHOOK_PASSPHRASE=your-secret alpha-strike
See the alpha-strike setup guide for the full VM provisioning, Cloudflare Tunnel, WAF and systemd procedure. PyPI: pypi.org/project/alpha-strike / GitHub: alforge-labs/alpha-strike
| Issue | Fix |
|---|---|
command not found: forge | Open a new terminal or run source ~/.bashrc. |
| Authentication error | Check your network connection and re-run alpha-forge system auth login. Make sure your Whop membership is active. |
| macOS security warning | Open System Settings → Privacy & Security and allow alpha-forge. |
For uninstall steps, environment variable customization, and the complete troubleshooting matrix, see the documentation.
Open Documentation →Cards for the six core commands plus a full command catalog. Detailed parameters and output examples live in the official docs.
For detailed parameters, output examples, and error codes across every subcommand, see the official documentation.
Open CLI Reference →alpha-forge backtest run SYMBOL --strategy ID
alpha-forge optimize run SYMBOL --strategy ID
alpha-forge optimize walk-forward SYMBOL --strategy ID --windows N
alpha-forge data fetch SYMBOL --period 5y --interval 1d
alpha-forge strategy save FILE_PATH
alpha-forge journal show STRATEGY_ID
| Group | Description | Subcommands |
|---|---|---|
alpha-forge backtest | Backtest execution, scanning, custom experiments | 12 |
alpha-forge optimize | Parameter optimization (grid / bayes / wfa) | 9 |
alpha-forge strategy | Strategy JSON save / validate / apply | 11 |
alpha-forge data | Historical / alternative / TradingView MCP data fetch | 6 |
alpha-forge journal | Trading journal and trade analysis | 8 |
alpha-forge live | Live trade analysis, replay, operations log | 10 |
| Other commands | system / pine / idea / analyze / explore / self | 6 groups |
For complete subcommand listings, options, return values, and sample output for each group, see the CLI Reference in the official docs.
Open CLI Reference →If the issue persists, contact support@alforgelabs.com.