--- id: technical version: "1.7.0" license: GPLv3 license_treatment: copyleft maintenance: active --- # technical — Technical Indicators for Financial Analysis License: copyleft · Maintenance: active · Downloads: 264.9K/mo ## 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 above — 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 pip install technical uv add technical poetry add technical ## Installing 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_current - Install friction: low - Maintenance: active - Downloads: 264.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags technical indicators library, trading strategy indicators, freqtrade indicators, financial analysis indicators, moving averages and oscillators, ta-lib wrapper, timeframe resampling, trading-indicators, freqtrade, financial-analysis [View on SkillFed](https://skillfed.io/packages/technical) · [View on PyPI](https://pypi.org/project/technical/)