Skip to main content

Developer SDK for validating and publishing trading signals

Project description

Quant Signal SDK

This repository now contains only the developer SDK package: quant_signal_sdk.

📖 New: See DEVELOPER.md for a complete step-by-step guide — writing strategies, backtesting with real data, uploading results to Marcus backend, and running live bots with telemetry.

Local executor client code has been moved to local-executor-client in the workspace.

Features

  • Pydantic signal models and enums (SignalPayload, SignalSide, SignalAction).
  • Retry-enabled HTTP transport (NetworkClient) using requests and urllib3.Retry.
  • Optional HMAC SHA-256 payload signing helper (generate_hmac_signature).
  • High-level API client (QuantSignalClient) for authenticated signal submission.
  • Minimal BaseStrategy contract for strategy inheritance.
  • Exchange-agnostic CCXT market-data downloader for OHLCV, symbol discovery, and funding history.
  • In-memory portfolio backtest runner with OHLCV replay and execution-policy enforcement.
  • Backtest publishing client for uploading completed BacktestReport objects to the backend.
  • Pluggable dry-run sync helpers (StateSyncer, HttpDryRunSyncer, WebSocketDryRunSyncer, FileSyncer).
  • Dedicated operational telemetry client (TelemetryClient) separate from dry-run PnL/state sync.

Quickstart

from quant_signal_sdk import QuantSignalClient, SignalPayload

client = QuantSignalClient(
    base_url="https://api.example.com",
    api_key="your-api-key",
    signer_secret="optional-signing-secret",
)

signal = SignalPayload(
    side="LONG",
    action="OPEN_LONG",
    symbol="BTCUSDT",
    tp=72000,
    sl=68500,
    confidence_score=0.84,
    metadata={"strategy": "trend_v1"},
)

result = client.send_signal(signal)
print(result)

Backtest

Create a my_bot.py file that exports a strategy class or STRATEGY object with on_event(...), then run:

quant-sdk backtest --bot-file my_bot.py --data-csv candles.csv --initial-cash 1000

The backtest engine replays OHLCV candles, queues signals for the next tick, and prints a simple portfolio summary when the run completes.

If your OHLCV data is stored as Parquet (recommended per GUIDE_DATA.md), point the CLI at the Parquet file or directory. Example using the dataset layout in GUIDE_DATA.md:

python -m quant_signal_sdk.cli backtest --bot-file my_bot.py \
    --data-parquet "D:\Code\Projects\self-projects\macd-overlay - Copy\data\ohlcv\BTCUSDT.parquet" \
    --timestamp-column timestamp --initial-cash 1000 --output-dir backtest_output_parquet --export-html

The CLI accepts either --data-csv (legacy) or --data-parquet (preferred). When a directory is passed to --data-parquet the first *.parquet file is used.

Publish backtest results

The backtest CLI still exports local CSV/HTML/JSON artifacts, but it can also upload the completed report to the backend as a historical run:

quant-sdk backtest --bot-file my_bot.py --data-csv candles.csv --initial-cash 1000 \
  --upload-backtest \
  --backend-url https://api.example.com \
  --bot-id bot_123 \
  --api-key <bot-api-key> \
  --signer-secret <optional-signing-secret>

The upload is batch-only. Equity history and closed trades are stored as HISTORICAL, while live dry-run sync continues through /api/v1/bots/{botId}/dry-run/sync.

Dry-run and telemetry

For live paper trading, build a StateSyncer around DryRunSyncClient and DryRunStateTracker. This keeps the state sync loop outside Runner so the transport can be REST, WebSocket, or file-based without changing core strategy execution.

Operational telemetry is separate. Use TelemetryClient for metrics like CPU, latency, and heartbeat-style signals instead of reusing the dry-run transport.

Requirements

  • Python 3.10+

Setup

Install the library for local development:

pip install -e .

Install with SDK development tools:

pip install -e .[dev]

Install optional market-data helpers:

pip install -e .[market-data]

Install both dev and market-data extras together:

pip install -e .[dev,market-data]

For multi-exchange downloads, use the generic downloader:

from quant_signal_sdk import ExchangeDataDownloader

downloader = ExchangeDataDownloader(exchange_id="binance", market_type="swap")
frame = downloader.fetch_ohlcv_frame("BTC/USDT:USDT", timeframe="1h", since="2024-01-01", paginate=True)
symbols = downloader.list_symbols(quote_asset="USDT", market_type="swap")

Or use the CLI:

quant-sdk install-ohlcv --exchange binance --symbols BTC/USDT --data-root data
quant-sdk install-data --exchange binance --symbols BTC/USDT --data-root data

After publishing to PyPI, users can install the released package with:

pip install quant-signal-sdk

Tests

python -m unittest discover -s tests -v

Release

Build the distribution and validate the artifacts before upload:

python -m build --sdist --wheel
python -m twine check dist/*

If you use GitHub Actions trusted publishing, the workflow in .github/workflows/publish-pypi.yml publishes automatically when you create a GitHub Release. Configure the PyPI trusted publisher once for this repository, then stop using API tokens for uploads.

Example: register -> signer secret behavior

When registering a bot via the example examples/sample_bot.py, the backend returns both an apiKey (runtime API key) and a rawSecret (signer secret). The example attaches the returned rawSecret to the QuantSignalClient as the signer_secret when the user did not already supply one. This ensures subsequent signal POSTs include the required X-Timestamp and X-Signature headers that the server validates.

If you prefer to manage signing secrets yourself, pass --bot-signer-secret to the example and the returned rawSecret will not overwrite it.

Build

python -m build --sdist --wheel

Contract Fixtures

  • SDK fixtures are versioned under tests/fixtures/contracts.
  • SDK compatibility checks are in tests/test_contract_compatibility_sdk.py.

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

quant_signal_sdk-0.1.3.tar.gz (68.1 kB view details)

Uploaded Source

Built Distribution

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

quant_signal_sdk-0.1.3-py3-none-any.whl (62.1 kB view details)

Uploaded Python 3

File details

Details for the file quant_signal_sdk-0.1.3.tar.gz.

File metadata

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

File hashes

Hashes for quant_signal_sdk-0.1.3.tar.gz
Algorithm Hash digest
SHA256 da4aac9fcbc5cf6c98c9598661d0a6acc770baf3ed7b5c8e5ebf1bfa7144bc87
MD5 24f5b3aba312f6e2307ffe929c8e5367
BLAKE2b-256 cc7bcbae1bafa89f4cc82d90e5e4e5b1a2bd4c3f359097409ff5b8cacfcfa026

See more details on using hashes here.

Provenance

The following attestation bundles were made for quant_signal_sdk-0.1.3.tar.gz:

Publisher: publish-pypi.yml on gnuhhung317/marcus-py

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

File details

Details for the file quant_signal_sdk-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for quant_signal_sdk-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d4d415dfa428bf1e7c902c96800a7c3087dbe3506ce0b51fbee078933c6c570f
MD5 2d5f7fb2f983ced657f0b0447293b3e3
BLAKE2b-256 1b0d243a04707fb0fdc5d453577106f84f5519b1fb92911f25f26ad510809f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for quant_signal_sdk-0.1.3-py3-none-any.whl:

Publisher: publish-pypi.yml on gnuhhung317/marcus-py

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