technical-indicators

technical-indicators is a skill for Claude Code from marketcalls/openalgo-claude-plugin. It costs 40 tokens per session (5,075 once invoked), scanned B, original, MIT.

A set of instructions and scripts for calculating common technical-analysis measures from market data, such as moving averages, RSI, MACD, and Bollinger Bands.

In plain words
What is it for?
Fetch OpenAlgo market data, calculate indicators with TA-Lib, generate strategy signals, scan candlestick patterns, and backtest trading ideas.
Why use it?
It shows how to turn historical price data into indicators, trading signals, pattern scans, and backtests.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the openalgo-python plugin — 6 skills shipped together

Good fit Fetch OpenAlgo market data, calculate indicators with TA-Lib, generate strategy signals, scan candlestick patterns, and backtest trading ideas.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/marketcalls/openalgo-claude-plugin/technical-indicators
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add marketcalls/openalgo-claude-plugin --skill technical-indicators
Clone the repo
git clone --depth 1 https://github.com/marketcalls/openalgo-claude-plugin

Made for: Claude Code.

Or install openalgo-python, the plugin that ships this one along with the rest of its 6 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for technical-indicators

README.md
[![agentmods](https://agentmods.dev/badge/skills/marketcalls/openalgo-claude-plugin/technical-indicators/github.svg)](https://agentmods.dev/skills/marketcalls/openalgo-claude-plugin/technical-indicators)
Your own site
<a href="https://agentmods.dev/skills/marketcalls/openalgo-claude-plugin/technical-indicators"><img src="https://agentmods.dev/badge/skills/marketcalls/openalgo-claude-plugin/technical-indicators/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for technical-indicators

Your own site · 80×15
<a href="https://agentmods.dev/skills/marketcalls/openalgo-claude-plugin/technical-indicators"><img src="https://agentmods.dev/badge/skills/marketcalls/openalgo-claude-plugin/technical-indicators.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,075 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.05075
Opus 5 $0.00020 $0.02537
Sonnet 5 $0.00008 $0.01015
Haiku 4.5 $0.00004 $0.00507

Measured 9d ago against content hash 5b264a3ed812, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade B, and why

technical-indicators scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/indicators.py, scripts/scanner.py, scripts/signals.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo apt-get install libta-lib-dev
plugins/openalgo-python/skills/technical-indicators/SKILL.md · 598 lines

How it starts

The opening of the file, as written. The whole thing — 598 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

# 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
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

python scripts/indicators.py --symbol SBIN --exchange NSE --interval 5m --days 5

Generate Signals

python scripts/signals.py --symbol NIFTY --exchange NSE_INDEX --strategy rsi_oversold

Scan for Patterns

python scripts/scanner.py --symbols RELIANCE,TCS,INFY,SBIN --exchange NSE --pattern bullish

Fetching Data for Analysis

from openalgo import api
import pandas as pd

client = api(api_key='your_key', host='http://127.0.0.1:5000')

# Fetch historical data
df = client.history(
    symbol="SBIN",
    exchange="NSE",
    interval="5m",
    start_date="2025-01-01",
    end_date="2025-01-15"
)

# TA-Lib requires numpy arrays
open_prices = df['open'].values
high_prices = df['high'].values
low_prices = df['low'].values
close_prices = df['close'].values
volume = df['volume'].values

Overlap Studies (Trend Indicators)

Simple Moving Average (SMA)

import talib

# Calculate SMA
sma_20 = talib.SMA(close_prices, timeperiod=20)
sma_50 = talib.SMA(close_prices, timeperiod=50)
sma_200 = talib.SMA(close_prices, timeperiod=200)

# Add to DataFrame
df['SMA_20'] = sma_20
df['SMA_50'] = sma_50
df['SMA_200'] = sma_200

# Crossover signal
df['SMA_Cross'] = np.where(df['SMA_20'] > df['SMA_50'], 1, -1)

Read the full file on GitHub · 598 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 598 lines · 40 tokens per session scan B 5b264a3ed812

Subscribe to this mod's changes

technical-indicators is a skill published in the GitHub repository marketcalls/openalgo-claude-plugin (3 stars, last pushed 8mo ago), licensed MIT. It adds 40 tokens to every session and 5,075 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

vertical-fintech-mobile

Domain-knowledge pack for money on a phone — wallets, payments, custody and signing, transaction lifecycle, KYC/AML gates, and offline reconciliation. The rules that separate a payments app from a CRUD app with a currency symbol: a balance is a claim about a server, an idempotency key must outlive the process that…

avelikiy/great_cto · 119 tokens

product-economics

Does this product make money at a price someone will pay? Forces contribution margin, a price with a stated basis, and a bottom-up market size — each number labelled measured / assumed / unknown, so a guess can never be read as a calculation.

avelikiy/great_cto · 55 tokens

quant-validation

The methods a financial-ML result has to survive before it is evidence — purged cross-validation with an embargo, triple-barrier labelling, sample uniqueness under overlapping labels, fractional differentiation, meta-labelling, and multiple-testing correction. Written because the invariants were required of…

avelikiy/great_cto · 104 tokens

peekaboo

Provides runtime observation and interaction for native macOS interfaces through accessibility state and screenshots. Use when the task depends on visible or interactive state in a running SwiftUI/AppKit app: what is rendered, focused, selected, enabled, reachable through menus/windows/dialogs, or experienced across a…

johnkozaris/jko-claude-plugins · 104 tokens

mobile-flows-maestro

This skill should be used when Maestro is explicitly requested or already present and the task is to author, run, or debug iOS/Android Maestro flows; use Maestro MCP; or handle Maestro selectors, system UI, permissions, Keychain, JavaScript, waits, device state, flakiness, or CI. Evidence includes a .maestro directory…

johnkozaris/jko-claude-plugins · 102 tokens

validate-mobile

Run a Maestro flow on an explicitly selected iOS or Android device and report behavioral evidence.

johnkozaris/jko-claude-plugins · 20 tokens