Skip to main content

Comprehensive technical indicators for financial data.

Project description

QuantJourney Technical Indicators

A high-performance Python library for calculating technical indicators, optimized with Numba for speed and designed for financial data analysis. This project is part of the Quantitative Infrastructure initiative by QuantJourney, providing robust tools for traders and researchers.

License: MIT License - see LICENSE.md for details.
Author: Jakub Polec (jakub@quantjourney.pro)
Repository: github.com/QuantJourneyOrg/qj_technical_indicators

Overview

The QuantJourney Technical Indicators library offers a comprehensive set of technical indicators for analyzing financial time series data. Key features include:

  • Numba-Optimized Calculations: Fast, JIT-compiled functions for performance-critical computations.
  • Flexible API: Supports both standalone functions and a TechnicalIndicators class for object-oriented usage.
  • Robust Error Handling: Validates inputs and handles edge cases like NaNs and empty data.
  • Visualization: Generates individual plots for indicators, saved as PNG files in an indicator_plots directory.
  • Integration: Works seamlessly with pandas DataFrames and yfinance for data fetching.

Extras and Lazy Loading

  • Optional extras keep the core lightweight:

    • pip install .[yf] to enable yfinance-based examples/tests
    • pip install .[plot] to enable plotting with matplotlib
  • Lazy JIT compile: kernels compile on first use and are cached to disk. You can opt-in to eager compile for lower first-call latency:

from quantjourney_ti import TechnicalIndicators
ti = TechnicalIndicators(warmup=True)  # pre-compiles a common subset of kernels
  • Logging: queue logging is opt-in to avoid starting background threads on import:
from quantjourney_ti import start_logging_queue
start_logging_queue()  # enable QueueHandler + background consumer thread

The library is ideal for backtesting trading strategies, real-time analysis, and research, with a focus on simplicity and extensibility.

Project Structure

The repository is organized as follows:

quantjourney_ti/
├── __init__.py               # Package initialization and imports
├── _decorators.py            # Decorators for timing and fallback mechanisms
├── _errors.py                # Custom error classes for input validation
├── _indicator_kernels.py     # Numba-optimized functions for indicator calculations
├── _legacy_/                 # Legacy code (not actively maintained)
├── _utils.py                 # Utility functions for validation, plotting, and memory optimization
├── indicators.py             # Main API class (TechnicalIndicators) with public methods
├── docs/                     # Documentation
│   ├── INDICATORS.md         # Explanation of each indicator
├── examples/                 # Example scripts demonstrating usage
│   ├── example_basic.py      # Basic indicator calculations
│   ├── example_indicators.py # Advanced usage with multiple indicators and plotting
├── tests/                    # Unit and integration tests
│   ├── __init__.py
│   ├── _yf.py                # yfinance test utilities
│   ├── test_all_indicators.py # Tests for all indicators
│   ├── test_basic.py         # Basic functionality tests
│   ├── test_decorators.py    # Decorator tests
│   ├── test_demo.py          # Demo script tests
│   ├── test_indicators.py    # Individual indicator tests
│   ├── test_integration_yf.py # Integration tests with yfinance
│   ├── test_utils.py         # Utility function tests
├── quantjourney_ti.egg-info/ # Package metadata (generated, typically in .gitignore)
├── README.md                 # Project documentation (this file)
├── LICENSE.md                # License details
├── setup.py                  # Package installation configuration

Note: The quantjourney_ti.egg-info directory is generated during package installation (e.g., pip install -e .). It can be safely removed if not using editable mode, and should be included in .gitignore to avoid version control.

Installation

  1. Clone the repository:

    git clone https://github.com/QuantJourneyOrg/qj_technical_indicators.git
    cd qj_technical_indicators
    
  2. Install dependencies:

    pip install -r requirements.txt
    # optional extras
    pip install .[yf]
    pip install .[plot]
    
  3. Install the package in editable mode:

    pip install -e .
    

Requirements:

  • Python 3.8+
  • pandas, numpy, yfinance, numba, matplotlib

Usage

The library provides a TechnicalIndicators class for calculating indicators and saving plots. See docs/USAGE.md for a compact guide and notebooks/ for interactive examples. Example:

from quantjourney_ti import TechnicalIndicators
from quantjourney_ti._utils import plot_indicators
import pandas as pd
import yfinance as yf
import os

# Fetch data (requires extra 'yf')
df = yf.download("AAPL", start="2024-01-01", end="2025-02-01")
if isinstance(df.columns, pd.MultiIndex):
    df.columns = df.columns.get_level_values(0).str.lower().str.replace(' ', '_')
else:
    df.columns = df.columns.str.lower().str.replace(' ', '_')
df["volume"] = df["volume"].replace(0, np.nan).ffill()

ti = TechnicalIndicators()
ema = ti.EMA(df["close"], 20)
rsi = ti.RSI(df["close"], 14)
macd = ti.MACD(df["close"], 12, 26, 9)

Examples:

python examples/run_basic.py --ticker AAPL --period 6mo
python examples/run_channels.py --ticker AAPL --period 6mo
python examples/run_from_csv.py --csv path/to/ohlcv.csv --sep ,

Notebooks:

  • notebooks/01_basic_indicators.ipynb
  • notebooks/02_channels_and_bands.ipynb
  • notebooks/03_streaming_demo.ipynb

📊 Example Plot

Technical Indicator Example

Supported Indicators

The library supports 39 indicators (54 series):

  • Single-Series Indicators (21):
    • SMA (Simple Moving Average)
    • EMA (Exponential Moving Average)
    • RSI (Relative Strength Index)
    • ATR (Average True Range)
    • MFI (Money Flow Index)
    • TRIX
    • CCI (Commodity Channel Index)
    • ROC (Rate of Change)
    • WILLR (Williams %R)
    • DEMA (Double Exponential Moving Average)
    • KAMA (Kaufman Adaptive Moving Average)
    • AO (Awesome Oscillator)
    • ULTIMATE_OSCILLATOR
    • CMO (Chande Momentum Oscillator)
    • DPO (Detrended Price Oscillator)
    • MASS_INDEX
    • VWAP (Volume Weighted Average Price)
    • AD (Accumulation/Distribution Line)
    • HULL_MA (Hull Moving Average)
    • OBV (On-Balance Volume)
    • RVI (Relative Vigor Index)
  • Multi-Series Indicators (18):
    • MACD (MACD, Signal, Histogram)
    • BB (Bollinger Bands: BB_Upper, BB_Middle, BB_Lower)
    • STOCH (Stochastic Oscillator: K, D)
    • ADX (Average Directional Index: ADX, +DI, -DI)
    • ICHIMOKU (Tenkan-sen, Kijun-sen, Senkou Span A, Senkou Span B, Chikou Span)
    • KELTNER (Keltner Channels: KC_Upper, KC_Middle, KC_Lower)
    • DONCHIAN (Donchian Channels: DC_Upper, DC_Middle, DC_Lower)
    • AROON (AROON_UP, AROON_DOWN, AROON_OSC)
    • VOLUME_INDICATORS (Volume_SMA, Force_Index, VPT)
    • PIVOT_POINTS (PP, R1, R2, S1, S2)
    • RAINBOW (9 SMAs for periods 2-10)
    • BETA
    • DI (Directional Indicator: +DI, -DI)
    • ADOSC (Chaikin A/D Oscillator)
    • HEIKEN_ASHI (HA_Open, HA_High, HA_Low, HA_Close)
    • BENFORD_LAW (Observed, Expected)
    • MOMENTUM_INDEX (MomentumIndex, NegativeIndex)
    • ELDER_RAY (BullPower, BearPower)

See indicators.py for the full list and parameters.

Development

To contribute:

  1. Fork the repository and create a branch.
  2. Add new indicators in _indicator_kernels.py with Numba optimization.
  3. Define public methods in indicators.py.
  4. Update tests in tests/.
  5. Submit a pull request.

Testing:

pytest tests/

Cleaning: Remove generated files:

rm -rf quantjourney_ti.egg-info dist build

Future Work

  • Add more indicators (e.g., PPO, Ichimoku Cloud).
  • Enhance plotting with customizable layouts.
  • Optimize Numba functions for additional edge cases.
  • Support real-time data feeds.

Contact

For issues or feedback, contact Jakub Polec at jakub@quantjourney.pro or open an issue on GitHub.

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

quantjourney_ti-0.3.0.tar.gz (276.1 kB view details)

Uploaded Source

Built Distribution

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

quantjourney_ti-0.3.0-py3-none-any.whl (104.6 kB view details)

Uploaded Python 3

File details

Details for the file quantjourney_ti-0.3.0.tar.gz.

File metadata

  • Download URL: quantjourney_ti-0.3.0.tar.gz
  • Upload date:
  • Size: 276.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for quantjourney_ti-0.3.0.tar.gz
Algorithm Hash digest
SHA256 1418fdb6b4608f146aa432c91bae68e981ceda6ed79900e487bdd78599f3275c
MD5 6b0362328af6a75ce3fbe854432cfffe
BLAKE2b-256 f5804defb7ce8a08923d168a1bd0a6544b26953d2e5c354b7fb6b34886ad7965

See more details on using hashes here.

File details

Details for the file quantjourney_ti-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for quantjourney_ti-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7ca2d824f68e91ed39f9eee82627b1448caf46432568a097a7e543dde817e987
MD5 bee0f03afccf8c9b837af879bd68c575
BLAKE2b-256 8935603b8f118c2c1650ef37d42d1cee880833a2564b616bbd44a8f20d0eb59c

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