Agent skill · Data & Analytics

technical-indicators

Technical analysis with TA-Lib - Moving averages, RSI, MACD, Bollinger Bands, Stochastic, ATR, candlestick patterns, and strategy signals using OpenAlgo market data

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill technical-indicators --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 16 KB
Bundled scripts: none
Path: skills/analysis/technical-indicators/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# OpenAlgo Technical Indicators Perform technical analysis using TA-Lib with OpenAlgo market data. Build trading strategies based on indicators, generate signals, and backtest ideas. ## Environment Setup ```bash # Install TA-Lib (requires system library) # macOS brew install ta-lib pip install TA-Lib # Ubuntu/Debian sudo apt-get install libta-lib-dev pip install TA-Lib # Windows # Download from https://www.lfd.uci.edu/~gohlke/pythonlibs/#ta-lib pip install TA_Lib‑0.4.28‑cp311‑cp311‑win_amd64.whl ``` ```python from openalgo import api import talib import pandas as pd import numpy as np client = api( api_key='your_api_key_here', host='http://127.0.0.1:5000' ) ``` ## Quick Start Scripts ### Calculate Indicators ```bash python scripts/indicators.py --symbol SBIN --exchange NSE --interval 5m --days 5 ``` ### Generate Signals ```bash python scripts/signals.py --symbol NIFTY --exchange NSE_INDEX --strategy rsi_oversold ``` ### Scan for Patterns ```bash python scripts/scanner.py --symbols RELIANCE,TCS,INFY,SBIN --exchange NSE --pattern bullish ``` --- ## Fetching Data for Analysis ```python from openalgo import api import pandas as pd client = api(api_key='your_key', host='http://127.0.0.1

What's inside
Steps it walks through
  1. Environment Setup
  2. Quick Start Scripts
  3. Calculate Indicators
  4. Generate Signals
  5. Scan for Patterns
  6. Fetching Data for Analysis
  7. Overlap Studies (Trend Indicators)
  8. Simple Moving Average (SMA)
  9. Exponential Moving Average (EMA)
  10. Bollinger Bands
  11. SuperTrend (Custom Implementation)
  12. Momentum Indicators
  13. Relative Strength Index (RSI)
  14. MACD (Moving Average Convergence Divergence)
Ships with 1 file
  • metadata.json
Commands it runs
Install TA-Lib (requires system library)
macOS
brew install ta-lib
pip install TA-Lib
Ubuntu/Debian
sudo apt-get install libta-lib-dev
Windows
Download from https://www.lfd.uci.edu/~gohlke/pythonlibs/#ta-lib
pip install TA_Lib‑0.4.28‑cp311‑cp311‑win_amd64.whl
python scripts/indicators.py --symbol SBIN --exchange NSE --interval 5m --days 5
More from claude-skill-registry
All skills →
About this skill
What does the technical-indicators skill do?

Technical analysis with TA-Lib - Moving averages, RSI, MACD, Bollinger Bands, Stochastic, ATR, candlestick patterns, and strategy signals using OpenAlgo market data

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill technical-indicators --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going