technical
Technical Indicators for Financial Analysis
What it is and what it does
Technical is a companion library for Freqtrade that bundles technical indicators and utilities for building trading strategies. It wraps TA-lib and provides custom indicators (consensus models, Ichimoku cloud, Supertrend, etc.) alongside standard ones (SMA, EMA, Bollinger Bands, RSI) all designed to work directly on pandas dataframes with OHLCV columns. The library also includes utilities for resampling dataframes to different timeframes and merging them back, allowing strategies to incorporate signals from multiple intervals.
The package is actively maintained, supports Python 3.11 through 3.14, and has no known vulnerabilities. It depends on TA-lib and pandas at runtime. Most indicators are wrapped to accept a dataframe and period parameters, making them straightforward to integrate into backtesting or live trading workflows.
Use it for:
- Build multi-timeframe trading strategies by resampling OHLCV data and merging signals from 4h or daily indicators into 1h candles.
- Backtest Freqtrade strategies using a unified API for technical indicators without writing custom wrappers.
- Combine consensus-based indicators (e.g., moving average consensus) to filter entry/exit signals across multiple indicators.
- Calculate volume-weighted indicators and trend-following metrics (Supertrend, Ichimoku) on historical price data.
- Access custom indicators like VFI, ALMA, and SSL Channel that are not in standard TA-lib.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Technical provides a collection of technical indicators and utilities for financial analysis, designed to work with Freqtrade trading strategies and pandas dataframes.
Yes, if you are building Freqtrade strategies or need a curated collection of technical indicators for pandas-based financial analysis. The active maintenance, low install friction, and lack of known vulnerabilities make it reliable. GPLv3 licensing requires that any derivative work also be open-source; if that is incompatible with your use case, do not install. TA-lib dependency can be a blocker on some platforms.
Install
technical on PyPI
pip
pip install technicaluv
uv add technicalpoetry
poetry add technicalInstalling technical
Before you install
Low install friction with a pure-Python wheel distribution. Actively maintained with a recent release (24 days old) and 1027 repository stars. Requires TA-lib and pandas as runtime dependencies.
License in practice
Licensed under GPLv3 (copyleft). Any derivative work or distribution must also be released under GPLv3; proprietary use requires separate licensing or relicensing of your code.
Quickstart
pip install technical
from technical.indicators import accumulation_distribution
from technical.util import resample_to_interval, resampled_merge
dataframe_long = resample_to_interval(dataframe, 240)
dataframe = resampled_merge(dataframe, dataframe_long, fill_na=True)
Requires TA-lib to be installed separately (a compiled C extension); Python 3.11 or later.
Verify before relying
- Whether TA-lib installation is straightforward on all platforms (known to be problematic on some systems).
- Performance characteristics when working with large dataframes or many indicators in sequence.
Package facts
| License | GPLv3 (copyleft) |
| Python support | supports the current Python release (>=3.11) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 2 — TA-lib, pandas |
| Maintenance | actively maintained — 24 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 264,907/month — #8,332 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: technical-1.7.0-py3-none-any.whl
Tags
More Investment packages
Generates country- and subdivision-specific…
permissive · top 1,000 on PyPI
yfinanceFetches financial and market data from Yahoo…
permissive · top 1,000 on PyPI
numpy-financialProvides elementary financial functions (IRR,…
permissive · top 5,000 on PyPI
ccxtCCXT is a unified API library for connecting to…
permissive · top 5,000 on PyPI
databentoOfficial Python client for accessing live and…
permissive · top 5,000 on PyPI
edgartoolsEdgarTools parses SEC EDGAR filings into typed…
permissive · top 5,000 on PyPI
smartmoneyconceptsComputes technical indicators for financial…
unclear · top 15,000 on PyPI
taComputes technical analysis indicators (volume,…
permissive · top 5,000 on PyPI
stockstatsAdds technical analysis indicators and…
permissive · top 15,000 on PyPI
ft-pandas-taProvides 130+ technical analysis indicators and…
permissive · top 15,000 on PyPI
pandas-taProvides over 150 technical analysis indicators…
unclear · top 5,000 on PyPI
pandas-ta-classicPandas TA Classic provides 193 technical…
permissive · top 15,000 on PyPI
tradingview-taRetrieves technical analysis indicators and…
permissive · top 15,000 on PyPI
backtraderBacktrader is a Python backtesting and live…
copyleft · top 15,000 on PyPI
TA-LibPython wrapper for the TA-Lib C library…
unclear · top 5,000 on PyPI
tradingview-screenerQuery TradingView's screener API to retrieve…
permissive · top 15,000 on PyPI