Skip to main content

ml4t-engineer

Python 3.12-3.14 PyPI License: MIT

Feature engineering, labeling, alternative bars, and leakage-safe datasets for financial ML.

ml4t-engineer provides 120 registry features across 11 categories, path-dependent and fixed-horizon labeling, activity-based bar sampling, and train-only preprocessing. The core interface uses Polars DataFrames.

Installation

ml4t-engineer supports Python 3.12, 3.13, and 3.14 on Linux, macOS, and Windows.

pip install ml4t-engineer

The quick start uses only core dependencies. Optional extras provide TA-Lib validation, DuckDB and PyArrow storage, market calendars, visualization, statistics, and ML tools:

pip install "ml4t-engineer[ta]"
pip install "ml4t-engineer[store]"
pip install "ml4t-engineer[calendars]"
pip install "ml4t-engineer[viz]"
pip install "ml4t-engineer[stats]"
pip install "ml4t-engineer[ml]"

TA-Lib requires its native library. The core package does not require an external service, credentials, or special hardware. Python 3.15 is not supported while the active Polars compatibility exception applies.

Quick Start

from datetime import date, timedelta

import polars as pl
from ml4t.engineer import compute_features

close = [100.0 + i * 0.1 + (i % 7) * 0.2 for i in range(100)]
ohlcv = pl.DataFrame(
    {
        "timestamp": [date(2024, 1, 1) + timedelta(days=i) for i in range(100)],
        "open": close,
        "high": [price + 1.0 for price in close],
        "low": [price - 1.0 for price in close],
        "close": close,
        "volume": [100_000 + i * 100 for i in range(100)],
    }
)

features = compute_features(ohlcv, ["rsi", "macd", "atr"])

assert {"rsi", "macd", "atr"} <= set(features.columns)
assert features.height == ohlcv.height

compute_features() returns the input columns with the requested feature columns appended. Use the feature registry to inspect categories and parameters before building larger pipelines.

Supported Workflows

  • Technical, volatility, risk, microstructure, statistical, and ML-oriented features
  • Triple-barrier, ATR-barrier, percentile, fixed-horizon, trend-scanning, and meta-labels
  • Tick, volume, dollar, imbalance, and run bars
  • Train/test splitting with train-only scaling
  • Feature metadata search and discovery

See the documentation for tutorials, task-oriented guides, explanations, and the API reference. Report defects and request changes through GitHub Issues.

Related Libraries

  • ml4t-specs defines the shared market-data and artifact contracts used by this package.
  • ml4t-data supplies validated market data for feature computation.
  • ml4t-diagnostic evaluates features, labels, and model signals produced from engineered datasets.

Development

git clone https://github.com/ml4t/engineer.git
cd engineer
uv sync --dev --extra docs --extra ta --extra store --extra viz
uv run ruff check src/ tests/ examples/ scripts/
uv run ruff format --check src/ tests/ examples/ scripts/
uv run ty check
uv run pytest tests/ -q
uv build
uv run mkdocs build --strict

Pull requests must also pass the supported Python and operating-system matrix, dependency and vulnerability review, clean-wheel installation, documented workflow tests, and ecosystem qualification.

Project Information

Release files for ml4t-engineer 0.1.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ml4t-engineer 0.1.4
File Size Uploaded
ml4t_engineer-0.1.4.tar.gz 612.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for ml4t-engineer 0.1.4
File Interpreter ABI Platform
ml4t_engineer-0.1.4-py3-none-any.whl Python 3 none any Details

Total release size: 998.6 kB

Release files / ml4t_engineer-0.1.4.tar.gz

Download URL ml4t_engineer-0.1.4.tar.gz
Size 612.4 kB
Tags Source
SHA-256 checksum
How to use checksums
f5bbc902e2948afaf9851d3a510a6ae0b6553bb756398e0039ed11b476e46de9
BLAKE2b-256 checksum
How to use checksums
18d48252fe7897d4a06429d4db95b80b6d7a76541f316ab8cf18469c825ad896
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.

Transparency log

Release files / ml4t_engineer-0.1.4-py3-none-any.whl

Download URL ml4t_engineer-0.1.4-py3-none-any.whl
Size 386.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
4b00fd35fe935737e8cda0ca8dad35a449e9e918cd9ed19775da3f3fa5877078
BLAKE2b-256 checksum
How to use checksums
3338b98292ff091237dd4c1c917f3f655254d9e9e38bbbcd276256e6807adf9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 9, 2026.

Transparency log
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page