Skip to main content

Python client for Quantum Signals APIs (streaming, inference, key management, backtest)

Reason this release was yanked:

investigating possible backend TZ bug

Project description

Quantum Signals Client

Python client library for Quantum Signals APIs.

Overview

This package provides a Python client for interacting with Quantum Signals services:

  • Streaming: SSE-based signal streaming
  • Inference: Model catalog and prediction endpoints
  • Key Management: API key CRUD operations
  • Backtest: Backtest results and metadata

Configuration

The client reads configuration from environment variables:

# Required:
export QUANTUMSIGNALS_API_KEY=foobar
# Optional, defaults to production URL:
export QUANTUMSIGNALS_BASE_URL=http://localhost:8000

The API key can also be set explicitly:

from quantumsignals.client import Client
client = Client(api_key="foobar")
client.set_api_key("foobar")

Usage

Init

from quantumsignals.client import Client
client = Client()

Fetching Available Models

models = client.get_model_catalog()

Streaming Signals

# Stream real-time signals via SSE
for signal in client.stream_signals():
    print(f"{signal.time} | {signal.symbol}: {signal.signal}")

Filtering by Symbols and Models

# Stream only specific symbols
for signal in client.stream_signals(symbols=["AAPL", "MSFT"]):
    print(signal)

# Stream only specific models
for signal in client.stream_signals(models=["model_v1", "model_v2"]):
    print(signal)

# Combine filters (AND logic)
for signal in client.stream_signals(
    symbols=["AAPL", "MSFT"],
    models=["model_v1"]
):
    print(signal)

Replay from Start of Trading Day

Use replay_day_from_start=True to replay all signals from the beginning of the trading day (9:30 AM ET) as fast as possible, then continue with live streaming. This is useful when connecting mid-day to catch up on all signals that were generated earlier.

# Replay all signals from market open, then continue live
for signal in client.stream_signals(replay_day_from_start=True):
    print(f"{signal.signal_time_utc} | {signal.symbol}: {signal.signal}")

# Combine with filters
for signal in client.stream_signals(
    symbols=["AAPL"],
    models=["model_v1"],
    replay_day_from_start=True
):
    print(signal)

The server sends a replay_status event when replay completes and transitions to live streaming. The client handles this automatically - you'll simply see historical signals arrive rapidly, followed by live signals at their normal pace.

Handling Null Signals

When the market is closed but data is still arriving, you'll receive "null signals" with signal=None and a non-zero code. These provide visibility into model activity even when not actively trading.

from quantumsignals.client.models import SignalCode

for signal in client.stream_signals():
    if signal.is_null_signal():
        # Market is closed, no prediction made
        print(f"Null signal: {signal.code_message}")
        continue

    # Process normal trading signal
    print(f"{signal.symbol}: {signal.signal}")

Signal codes:

  • 0 (NORMAL): Normal trading signal with valid prediction
  • 1 (MARKET_CLOSED): Outside trading hours - no prediction made

Automatic Reconnection

The client automatically reconnects with exponential backoff if the connection is lost. On reconnection, it sends a Last-Event-ID header to recover any missed events from the server's buffer (last ~100 events).

# Reconnection is enabled by default
for signal in client.stream_signals(auto_reconnect=True):  # default
    print(signal)

# Disable if you want to handle reconnection yourself
for signal in client.stream_signals(auto_reconnect=False):
    print(signal)

Backtest Operations

# Get backtest metadata
metadata = client.get_backtest_metadata(
    model_family="Pythia",
    symbol="AAPL"
)

# Get historical predictions (JSON, CSV, or Parquet)
results = client.get_historical_predictions(
    model_family="Pythia-aB24X",
    symbol="NVDA",
    format="json",
    page=1,
    page_size=100
)

# Get daily backtest summaries
daily = client.get_daily_backtests(
    model_family="Pythia-aB24X",
    symbol="NVDA",
    format="json"
)

Context Manager Usage

# Properly close HTTP connections
with Client() as client:
    models = client.get_model_catalog()
    # Client automatically closes on exit

Development

This is a workspace package in the QS1 monorepo. See the main repository README for development setup.

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

quantumsignals_client-0.5.0.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

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

quantumsignals_client-0.5.0-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file quantumsignals_client-0.5.0.tar.gz.

File metadata

File hashes

Hashes for quantumsignals_client-0.5.0.tar.gz
Algorithm Hash digest
SHA256 97d882d7a46ca2ec15d307dc4cd65d7c380944fb1b0976e1c56c492da10977be
MD5 3ae6bd8d90b6900c083137648c762848
BLAKE2b-256 62f07c2651af8843213623ab5452cc7ab5af91b7864d5fe61120cec3b5678812

See more details on using hashes here.

File details

Details for the file quantumsignals_client-0.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for quantumsignals_client-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e012f45b0135f6015ae3e9dced7cfe0eb05eed901caa046648e8a35976416afd
MD5 20f35a2b318a2162ad0b51b3bf967147
BLAKE2b-256 724d1f59a4cd82b54915d060deb53640cf2cc7a1604410c8ece807f041114c2f

See more details on using hashes here.

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