technical-analysis-engine

technical-analysis-engine is a skill for Claude Code, Codex from JansenAnalytics/claudex. It costs 96 tokens per session (738 once invoked), scanned A, original, MIT.

A market-analysis tool that calculates common indicators such as RSI, MACD, moving averages, and Bollinger Bands. It also scans instruments for trading patterns and analyzes support, resistance, and market structure.

In plain words
What is it for?
Use it to analyze forex and other instruments, scan for momentum or reversal setups, compare timeframes, and identify technical price patterns.
Why use it?
It gathers several kinds of price and trend evidence in one analysis, reducing the need to calculate indicators and scan instruments manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to analyze forex and other instruments, scan for momentum or reversal setups, compare timeframes, and identify technical price patterns.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jansenanalytics/claudex/technical-analysis-engine
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 JansenAnalytics/claudex --skill technical-analysis-engine
Clone the repo
git clone --depth 1 https://github.com/JansenAnalytics/claudex

Made for: Claude Code, Codex.

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-analysis-engine

README.md
[![agentmods](https://agentmods.dev/badge/skills/jansenanalytics/claudex/technical-analysis-engine.svg)](https://agentmods.dev/skills/jansenanalytics/claudex/technical-analysis-engine)
Your own site
<a href="https://agentmods.dev/skills/jansenanalytics/claudex/technical-analysis-engine"><img src="https://agentmods.dev/badge/skills/jansenanalytics/claudex/technical-analysis-engine.svg" alt="Measured on agentmods" height="20"></a>
Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 738 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00096 $0.00738
Opus 5 $0.00048 $0.00369
Sonnet 5 $0.00019 $0.00148
Haiku 4.5 $0.00010 $0.00074

Measured 4d ago against content hash 0a30e4684e38, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

technical-analysis-engine scanned grade A with 0 findings 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 4d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/analyze.py, scripts/indicators.py, scripts/screener.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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/technical-analysis-engine/SKILL.md · 68 lines

How it starts

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

Technical Analysis Engine

Quick Start

SKILL=${CLAUDE_SKILLS_DIR:-$HOME/.claude-agent/.claude/skills}/technical-analysis-engine/scripts

# Full analysis on any instrument
python3 $SKILL/analyze.py EURUSD
python3 $SKILL/analyze.py XAUUSD --mtf    # Multi-timeframe

# Screener — scan all instruments for setups
python3 $SKILL/screener.py                          # All setups
python3 $SKILL/screener.py --setup momentum         # Momentum only
python3 $SKILL/screener.py --setup reversal          # Oversold/overbought
python3 $SKILL/screener.py --setup squeeze           # BB/KC squeeze
python3 $SKILL/screener.py --setup trend-pullback    # EMA pullback
python3 $SKILL/screener.py --asset-class forex       # Forex only

Indicators Computed

  • Trend: EMA 9/21/50, SMA 200, VWAP, trend alignment score
  • Momentum: RSI 14, MACD, Stochastic, CCI, Williams %R, ROC
  • Volatility: Bollinger Bands, ATR, Keltner Channels, NATR, squeeze detection
  • Volume: OBV, A/D, MFI
  • Structure: Swing highs/lows, higher-high/lower-low, Fibonacci levels
  • Custom: EMA cross signals, divergence detection, multi-TF alignment

Structure Analysis

# Full structure analysis (BOS/CHoCH, S/R zones, OBs, FVGs, regime)
python3 $SKILL/structure.py EURUSD

# Regime classification only
python3 $SKILL/structure.py XAUUSD --regime

# Scan all instruments by regime
python3 $SKILL/structure.py --scan-regimes
  • BOS/CHoCH: Break of Structure (trend continuation) and Change of Character (reversal)
  • S/R Zones: Clustered swing points with recency-weighted strength
  • Order Blocks: Last opposite candle before strong move (demand/supply zones)
  • Fair Value Gaps: 3-candle imbalances price tends to revisit
  • Regime: TRENDING_UP/DOWN, RANGING, BREAKOUT_PENDING, MEAN_REVERTING, TRANSITIONING
  • Key Level Proximity: S/R zones, round numbers, previous day H/L/C

Depends On

  • market-data-engine (OHLCV data in SQLite)
  • pandas_ta (pip package)

Read the full file on GitHub · 68 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. 4d ago First seen · 68 lines · 96 tokens per session scan A 0a30e4684e38

Subscribe to this mod's changes

technical-analysis-engine is a skill published in the GitHub repository JansenAnalytics/claudex (5 stars, last pushed 2mo ago), licensed MIT. It adds 96 tokens to every session and 738 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

crypto-technical

Crypto Technical Analysis — analyzes trend, momentum, volume, chart patterns, and market structure across 24/7 crypto markets with a composite Technical Score (0-100).

zubair-trabzada/ai-crypto-claude · 38 tokens

market-structure-ta

Market structure analysis with Wyckoff, SMC/ICT, Al Brooks, and classical price action — outputs structured trade scripts with levels, entry, stop, R:R. Use when the user wants real technical analysis on a ticker (e.g. "market structure analysis on NVDA", "Wyckoff phase for BTC", "where's the order block on SOL", "SMC…

Starchild-ai-agent/official-skills · 85 tokens

indicator-guide

Explains common technical indicators (SMA, EMA, RSI, MACD) with quantitative intuition and example calculations.

YicunAI/Pnlclaw-community · 25 tokens

trade-memory

Compliance-grade decision audit trail for AI trading agents. Records every trading decision with full context (conditions, filters, indicators, risk state), SHA-256 tamper detection, and structured export for MiFID II / EU AI Act readiness. Works alongside Binance Spot, Futures, and Web3 skills — they execute trades…

mnemox-ai/tradememory-protocol · 68 tokens

tradememory-bridge

Bridge between Binance trading events and TradeMemory Protocol. Automatically journals trades, recalls similar past setups, detects behavioral biases, and provides outcome-weighted recall for AI trading agents. Use this skill after executing Binance spot trades to build persistent memory.

mnemox-ai/tradememory-protocol · 53 tokens

risk-management

Risk management domain knowledge for trading agents — affective state monitoring, position sizing, drawdown management, tilt detection, and behavioral guardrails. Use when checking risk before trades, managing drawdowns, detecting behavioral drift, or enforcing discipline. Triggers on "risk", "drawdown", "tilt"…

mnemox-ai/tradememory-protocol · 89 tokens