Skip to main content

Add your description here

Project description

unified-data

Unified Kline Data Interface

unified-data allows you to pull standardized kline (candlestick) data from various financial markets (Crypto, Stocks, Futures) through a single, unified interface. It handles the complexity of exchange-specific API differences, so you can focus on analysis.

Features

  • Unified Interface: Single pull_kline function for all market types.
  • Polars Integration: Returns high-performance polars.DataFrame objects.
  • Smart Routing: Automatically routes requests to the appropriate data source (ccxt, yfinance, akshare) based on market type.
  • Standardized Inputs: Use a common ticker format regardless of the underlying exchange.
  • AI-Ready: Designed with clear typing and schemas to be easily used by AI Agents and LLMs.

Installation

pip install unified-data

Quick Start

import polars as pl
from unified_data.api import pull_kline
from unified_data.models.enums import MarketType

# 1. Pull Crypto Data (BTC/USDT)
df_crypto = pull_kline(
    ticker="BTC_USDT",
    market_type=MarketType.CRYPTO,
    period="1d",
    limit=100
)
print(df_crypto.head())

# 2. Pull US Stock Data (Apple)
df_stock = pull_kline(
    ticker="AAPL",
    market_type=MarketType.STOCK,
    period="1h",
    limit=50
)
print(df_stock.head())

Standardized Tickers

unified-data uses a strictly standardized format for input tickers. The library handles translation to exchange-specific symbols internally.

Market Type Format Pattern Example Description
Crypto [SYMBOL]_[QUOTE] BTC_USDT Standard pair with underscore separator.
Stocks [SYMBOL] AAPL Common ticker symbol.
Futures (Front) [SYMBOL]=F GC=F Continuous/Front month contract.
Futures (Specific) [SYMBOL][MONTH][YY] GCU26 Specific expiry (e.g., Gold September 2026).

Futures Month Codes

Code Month Code Month Code Month
F Jan K May U Sep
G Feb M Jun V Oct
H Mar N Jul X Nov
J Apr Q Aug Z Dec

Usage Reference

pull_kline

The main entry point for the library.

def pull_kline(
    ticker: str, 
    market_type: str, 
    period: str, 
    start_date: datetime | str | None = None, 
    end_date: datetime | str | None = None, 
    limit: int = 100,
    exchange: str | None = None
) -> pl.DataFrame

Parameters:

  • ticker (str): The asset symbol in the standardized format (e.g., BTC_USDT, AAPL).
  • market_type (str): The type of market. Use unified_data.models.enums.MarketType constants:
    • "crypto"
    • "stock"
    • "futures"
  • period (str): Timeframe interval (e.g., 1m, 1h, 1d).
  • start_date (datetime | str, optional): Start time for data.
  • end_date (datetime | str, optional): End time for data.
  • limit (int): Number of candles to retrieve (default: 100).
  • exchange (str, optional): Force a specific exchange backend (e.g., ccxt, yfinance, akshare).

Returns: A polars.DataFrame with the following columns:

  • ts: Timestamp (Unix ms)
  • open: Open price
  • high: High price
  • low: Low price
  • close: Close price
  • vol: Volume
  • symbol: The ticker symbol

AI Agent Integration

This package is designed to be easily used by Large Language Models (LLMs) and AI Agents using tool calling (function calling).

Tool Definition

When providing this library as a tool to an AI, you can use the following definition:

{
  "name": "pull_kline",
  "description": "Retrieve historical candlestick (OHLCV) data for financial assets (Crypto, Stocks, Futures). Returns a Polars DataFrame.",
  "parameters": {
    "type": "object",
    "properties": {
      "ticker": {
        "type": "string",
        "description": "Standardized symbol. Crypto: 'BTC_USDT', Stock: 'AAPL', Futures: 'GC=F'."
      },
      "market_type": {
        "type": "string",
        "enum": ["crypto", "stock", "futures"],
        "description": "Class of the asset."
      },
      "period": {
        "type": "string",
        "description": "Timeframe, e.g., '1h', '4h', '1d'."
      },
      "limit": {
        "type": "integer",
        "description": "Number of data points to retrieve."
      },
      "start_date": {
        "type": "string",
        "description": "ISO 8601 start date (optional)."
      }
    },
    "required": ["ticker", "market_type", "period"]
  }
}

System Prompt Recommendation

If you are instructing an AI to use this library, include the following in its system prompt:

You have access to the unified_data library. When asked for market data, ALWAYS use the pull_kline tool. Ensure you convert user requests into the standardized ticker format:

  • Crypto pairs must use underscores: "Bitcoin to USDT" -> BTC_USDT
  • Stocks use their symbol: "Apple" -> AAPL
  • Futures use the Month Code standard: "Gold Dec 2025" -> GCZ25

Configuration

Supported Data Sources (Backends):

  • Crypto: ccxt (Binance default)
  • Stocks (US): yfinance
  • Stocks (China): akshare
  • Futures: yfinance / akshare

No API keys are required for the default public endpoints.

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

unified_data-0.1.1.tar.gz (13.1 kB view details)

Uploaded Source

Built Distribution

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

unified_data-0.1.1-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file unified_data-0.1.1.tar.gz.

File metadata

  • Download URL: unified_data-0.1.1.tar.gz
  • Upload date:
  • Size: 13.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.17

File hashes

Hashes for unified_data-0.1.1.tar.gz
Algorithm Hash digest
SHA256 2fdafd99ad80b17bfa2464a12d2c3cc422f0e324d379b306960f3bde9084b909
MD5 d9de85d83b71461ed2014b02122d61cd
BLAKE2b-256 c3af751c41fbdc0569e6cb90d32ce3c0547e198228ac3ca52b8956348a3c5838

See more details on using hashes here.

File details

Details for the file unified_data-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for unified_data-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fa257be117e7d4d679c1aa8a0067599fec6714fdac178d3c0c07b56a401d53e1
MD5 ed2bb20dc21129aa73445a88c9c0a7e9
BLAKE2b-256 c8e9d136082a45a805d59c476ed2a2ca39fcb30dd177c389f842e8c08661897c

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