Skip to main content

AlphaLens — an event-driven backtesting & walk-forward engine for systematic strategies

Project description

alphalens-core

An event-driven backtesting & walk-forward engine for systematic trading strategies.

Write a strategy as a Python class, run a single forward pass over an in-memory OHLCV feed, and get back an equity curve, a trade log, and a rich set of performance statistics — plus walk-forward analysis, parameter sweeps, and an HTML dashboard. alphalens-core is the open engine behind AlphaLens.

Install

pip install alphalens-core              # core engine (pandas + numpy only)
pip install "alphalens-core[viz]"       # + matplotlib / quantstats dashboard & reports
pip install "alphalens-core[polygon]"   # + Polygon market-data fetching
pip install "alphalens-core[live]"      # + Alpaca execution and Polygon history
pip install "alphalens-core[fast]"      # + pyarrow parquet cache

Quickstart

from alphalens_core import Algorithm, Backtester

class GoldenCross(Algorithm):
    start = "2020-01-01"
    end = "2024-12-31"
    universe = ["SPY"]

    def initialize(self):
        self.set_warmup(50)

    def on_data(self, slice):
        hist = self.history("SPY", 50)["close"]
        if len(hist) < 50:
            return
        self.set_holdings("SPY", 1.0 if hist.tail(10).mean() > hist.mean() else 0.0)

result = Backtester().run(GoldenCross)
print(result.stats)     # Sharpe, Sortino, CAGR, max drawdown, win rate, …
result.dashboard        # inline HTML report in Jupyter, or opens in your browser

Live data needs a POLYGON_API_KEY (a .env / .env.local file is loaded automatically). To run fully offline, inject your own DataFeed.

Host on AlphaLens

AlphaLens can host the dashboard side of your alphalens-core workflow: backtest sync, Strategy Center dashboards, hosted market data access, and live deployment telemetry. Your strategy code and broker execution still run locally in v1.

Install the extras used by the hosted workflow:

pip install "alphalens-core[live,cloud,fast]"

Create an API key in AlphaLens Settings, then connect locally:

alphalens connect --api-key alens_...
alphalens status

Run and sync a backtest:

alphalens run --strategy my_strategy:MyStrategy

For CI or one-off shells, ALPHALENS_API_KEY=alens_... alphalens run ... is also supported. End users should not need internal Supabase commands.

Run a local Alpaca paper deployment and stream telemetry to Strategy Center:

alphalens live --strategy my_strategy:MyStrategy

Use the Python API when you want key injection from code:

from alphalens_core import AlphaLensClient
from my_strategy import MyStrategy

al = AlphaLensClient(api_key="alens_...")
result = al.backtest(MyStrategy)
al.live(MyStrategy, broker="alpaca", paper=True).run()

Read the hosted workflow docs at alphalens.dev/docs/alphalens-core, including the strategy authoring guide at alphalens.dev/docs/alphalens-core/build-a-strategy.

Live / Alpaca Paper Trading

The live runner uses the same Algorithm class and history API as the backtester. The simplest path is the built-in Alpaca + Polygon runner:

export POLYGON_API_KEY=...
export ALPACA_API_KEY=...
export ALPACA_SECRET_KEY=...

alphalens live --strategy my_strategy:MyStrategy

alphalens live defaults to Alpaca paper trading. Pass --live only when you intend to route orders to the live Alpaca account. The command reads class.universe and class.resolution by default; override them with --universe SPY,QQQ or --resolution 5minute.

For custom broker/data transports, LiveSession.from_cache seeds a bounded rolling history, then each completed Slice is appended before on_data runs:

from alphalens_core import AlpacaBrokerage, LiveSession, NO_BAR
from my_data import next_completed_slice
from my_strategy import MyStrategy

broker = AlpacaBrokerage(paper=True)
session = LiveSession.from_cache(
    MyStrategy,
    brokerage=broker,
    next_bar_fn=next_completed_slice,  # Slice, NO_BAR while idle, None to stop
    history_bars=500,
    state_path=".alphalens/live/my_strategy.json",
)
session.run()

from_cache uses UniverseCache and Polygon by default; inject an existing cache to use another DataSource. The runner:

  • exposes seeded and appended bars through history(), history_array(), and history_arrays();
  • keeps history bounded and suppresses duplicate timestamps;
  • rejects out-of-order bars and unreconciled broker orders;
  • synchronizes Alpaca cash/positions and FIFO lots at startup;
  • respects strategy resolution and warmup settings;
  • checkpoints the last processed bar to avoid replay after restart.

Market-data transport is intentionally separate from execution. A callback must emit completed, consolidated slices for the strategy universe. See PolygonCompletedBarPoller for the built-in Polygon polling implementation. Live membership changes are not yet supported: the session fails explicitly for dynamic universes until removal orders can be reconciled with broker fills.

Features

  • Event-driven lifecycleinitialize, on_data, on_order_event, on_securities_changed, on_end_of_day, on_warmup_finished.
  • Realistic fills — next-bar execution with pluggable slippage / fee / fill models, and a one-bar look-ahead guard so decisions on bar t can't peek at bar t's close.
  • Walk-forward analysis with per-fold parameter search.
  • Parameter sweeps + PBO (probability of backtest overfitting).
  • Live execution through Alpaca paper/live brokerage with buffered rolling history and restart-safe bar processing.
  • Reportingresult.stats, an HTML result.dashboard, and quantstats reports.

CLI

alphalens run --strategy mymod:MyStrategy
alphalens live --strategy mymod:MyStrategy
alphalens wfa --strategy mymod:MyStrategy --train 504 --test 63 --step 63
alphalens cache --info

License

Apache-2.0 © AlphaLens LLC

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

alphalens_core-0.3.33.tar.gz (355.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

alphalens_core-0.3.33-py3-none-any.whl (325.0 kB view details)

Uploaded Python 3

File details

Details for the file alphalens_core-0.3.33.tar.gz.

File metadata

  • Download URL: alphalens_core-0.3.33.tar.gz
  • Upload date:
  • Size: 355.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for alphalens_core-0.3.33.tar.gz
Algorithm Hash digest
SHA256 e9f54907107c6008487d3cba55c48e6cd43197da966ba7ed72377e93395c12e4
MD5 4af4230ad79becc848c340e1974712bf
BLAKE2b-256 f5e54a0a62f198f5122da0265b1d6633b3516e70c87113f1dd5c3294574290f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for alphalens_core-0.3.33.tar.gz:

Publisher: release.yml on AlphaLens-LLC/alphalens-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file alphalens_core-0.3.33-py3-none-any.whl.

File metadata

  • Download URL: alphalens_core-0.3.33-py3-none-any.whl
  • Upload date:
  • Size: 325.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for alphalens_core-0.3.33-py3-none-any.whl
Algorithm Hash digest
SHA256 30871002eb8ebc796220c410c9ec1604f7b8c3b787a84313212861c2e9679418
MD5 c05b16db5df14dadc29ad8d3c06e9bcd
BLAKE2b-256 910f5bb42c22cfe12ace7c05adf8599abe95c7a4045b402b9084b221bed77171

See more details on using hashes here.

Provenance

The following attestation bundles were made for alphalens_core-0.3.33-py3-none-any.whl:

Publisher: release.yml on AlphaLens-LLC/alphalens-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page