pandas-ta
pandas-ta extends pandas with 130+ technical indicators callable via `df.ta` on OHLCV DataFrames. It covers trend, momentum, volatility, volume, and overlap categories, with built-in strategies for scalping, mean reversion, and trend following. Designed for crypto markets with guidance on 24/7 volatility adjustments, low-liquidity tokens, and timeframe-specific indicator selection.
pandas-ta computes 130+ technical indicators across trend, momentum, volatility, and volume categories on OHLCV crypto data.
AI-generated summary based on this skill's SKILL.md
Decision gist · record as of 2026-06-24
pandas-ta computes 130+ technical indicators across trend, momentum, volatility, and volume categories on OHLCV crypto data. pandas-ta extends pandas with 130+ technical indicators callable via `df.ta` on OHLCV DataFrames. It covers trend, momentum, volatility, volume, and overlap categories, with built-in strategies for scalping, mean reversion, and trend following. Designed for crypto markets with guidance on 24/7 volatility adjustments, low-liquidity tokens, and timeframe-specific indicator selection.
Use it when
- pandas-ta computes 130+ technical indicators on OHLCV DataFrames through a simple `df.ta` accessor.
- Yes, pandas-ta includes a built-in strategy class for backtesting multi-indicator approaches.
Verify before relying
Read SKILL.md below before installing (6 files). Open directory: indexed for reading, not audited.
Install
agiprolabs/claude-trading-skills/pandas-ta · repository language: Python
Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.
Frequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What technical analysis indicators for crypto does pandas-ta provide?
pandas-ta extends pandas with 130+ technical indicators callable via `df.ta` on OHLCV DataFrames. It covers trend (EMA, ADX, SuperTrend), momentum (RSI, MACD, Stochastic RSI), volatility (Bollinger Bands, ATR, Keltner Channels), volume (OBV, CMF), and overlap categories. pandas-ta is designed for crypto markets with guidance on 24/7 volatility adjustments, low-liquidity tokens, and timeframe-specific indicator selection.
How do I compute 130+ indicators on OHLCV crypto data with pandas-ta?
pandas-ta computes 130+ technical indicators on OHLCV DataFrames through a simple `df.ta` accessor. Load your crypto OHLCV data into a pandas DataFrame with columns for Open, High, Low, Close, and Volume, then call indicator methods like `df.ta.rsi()`, `df.ta.macd()`, or `df.ta.bbands()`. Each returns a Series or DataFrame of computed values appended to your original data for further analysis.
Can pandas-ta build and backtest multi-indicator trading strategies?
Yes, pandas-ta includes a built-in strategy class for backtesting multi-indicator approaches. It supports scalping, mean reversion, and trend-following strategies that combine indicators like EMA crossovers, ADX confirmation, and Bollinger Bands signals. You define entry/exit logic using trend, momentum, and volatility indicators, then backtest on historical OHLCV data to evaluate performance before live trading.
Which pandas-ta indicators generate buy/sell signals for crypto trading?
pandas-ta generates buy/sell signals from trend (SuperTrend, ADX, EMA crossovers), momentum (RSI, MACD, Stochastic RSI), and volatility (Bollinger Bands squeeze, Keltner Channels breakouts) indicators. Common setups include RSI oversold/overbought levels, MACD crossovers, mean reversion at Bollinger Bands extremes, and trend confirmation via ADX. Combine multiple signals to reduce false positives in crypto's 24/7 volatile markets.
How does pandas-ta handle position sizing and ATR for crypto scalping?
pandas-ta computes ATR (Average True Range) to measure volatility and set dynamic stop-losses and position sizes. For crypto scalping on 1m or 5m timeframes, use ATR to scale position size inversely with volatility—smaller positions during high ATR spikes, larger during low volatility. Combine ATR with SuperTrend or Keltner Channels for breakout detection and risk management tailored to crypto's rapid price swings.
What crypto-specific tuning does pandas-ta offer for indicators and timeframes?
pandas-ta provides guidance on crypto-specific adjustments: 24/7 market volatility requires higher ATR multipliers and wider Bollinger Bands; low-liquidity tokens need larger position sizing buffers; timeframe selection (1m scalping vs. 4h trend following) changes optimal indicator periods. Use shorter RSI/MACD periods for scalping, longer for swing trading. Adjust Stochastic RSI and volume indicators (OBV, CMF) based on your target timeframe and asset liquidity.
SKILL.md
Rendered from the published skill. Quoted content, verbatim.
pandas-ta — Technical Analysis for Crypto Markets
pandas-ta is a Python library that extends pandas DataFrames with 130+ technical analysis indicators accessible via df.ta. It covers trend, momentum, volatility, volume, and overlap indicator categories — all callable with a single method on any OHLCV DataFrame.
Installation
uv pip install pandas-ta pandas httpx
Quick Start
import pandas as pd
import pandas_ta as ta
# Assume df is a DataFrame with columns: open, high, low, close, volume
# All lowercase column names required
# Single indicator
df["rsi"] = df.ta.rsi(length=14)
df["atr"] = df.ta.atr(length=14)
# Multiple indicators via strategy
df.ta.strategy(ta.Strategy(
name="Quick Check",
ta=[
{"kind": "rsi", "length": 14},
{"kind": "macd", "fast": 12, "slow": 26, "signal": 9},
{"kind": "bbands", "length": 20, "std": 2.0},
]
))
OHLCV DataFrame Format
pandas-ta expects a DataFrame with lowercase column names:
```python import pandas as pd
df = pd.DataFrame({ "open": [...],
(truncated - see the full file via the links below)
File tree — 6 files
skills/pandas-ta/SKILL.md
skills/pandas-ta/references/common_pitfalls.md
skills/pandas-ta/references/indicator_guide.md
skills/pandas-ta/references/strategy_patterns.md
skills/pandas-ta/scripts/compute_indicators.py
skills/pandas-ta/scripts/multi_indicator_scan.py
Let your AI agent find skills like this
Example. Real query, live index.
You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.
wish › “Compute 130+ technical indicators on OHLCV crypto data”
Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →
Related skills
Vectorbt Expert handles strategy backtesting across Indian equities, US stocks, and crypto markets using the vectorbt framework. It generates entry/exit signals via OpenAlgo's 100+ technical indicators, sizes positions intelligently, and produces detailed performance reports with benchmark comparisons.
Indicator Expert guides you through OpenAlgo's 100+ technical indicators—from classic momentum and volatility tools to custom compositions—with real-time charting, WebSocket feeds, and multi-timeframe analysis. Build dashboards in Plotly Dash or Streamlit, scan stocks across Indian and US markets, and combine indicators for trading confluence.
Crypto Backtest transforms natural language trading ideas into validated strategies with professional backtesting and detailed reports. It combines multiple indicators—RSI, moving averages, Bollinger Bands, and more—to build robust entry and exit conditions for spot trading only. Users describe their strategy, confirm the generated plan, and receive comprehensive backtest results.
Trader Hand Skill equips you with comprehensive technical analysis reference material covering RSI, MACD, Bollinger Bands, VWAP, moving averages, ATR, and volume analysis. Each indicator includes calculation formulas, worked examples, and practical interpretation guidelines for identifying trading signals and market conditions.
Compute technical indicators including RSI, MACD, Bollinger Bands, and moving averages for single or multiple stocks. Get buy/sell signals, crossover detection, volatility metrics, and Sharpe ratios across configurable time periods. Optionally include earnings data and correlation analysis for portfolio diversification.
Indicator Scanner screens watchlists against technical conditions—RSI oversold/overbought, EMA crossovers, Supertrend reversals, MACD signals, ADX strength, Bollinger squeezes, and volume spikes. Results display in formatted tables and export to CSV for further analysis.
More skills feature-engineering (MIT) · Stock 美股基础数据 (unlicensed) · Design Trading Strategies (unlicensed) · Coinmarketcap Diamonds Premium Analytics (NOASSERTION) · risk-management (MIT) · kelly-criterion (MIT)