technical-rating

technical-rating is a skill for Claude Code, Codex from Signal-Execution-Labs/forex-trading-ai-agent. It costs 0 tokens per session (975 once invoked), scanned A, original, MIT.

A market-analysis tool that combines signals from technical indicators into a buy, sell, or neutral rating. Technical indicators are formulas based on price and trading data, such as RSI, moving averages, and MACD.

In plain words
What is it for?
Use it to calculate aggregate technical ratings from oscillators and moving averages across supported market data.
Why use it?
It gives traders one summary of several indicators instead of requiring them to interpret each signal separately. The rating does not by itself explain or guarantee a market outcome.

Skill for Claude CodeCodex

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

Good fit Use it to calculate aggregate technical ratings from oscillators and moving averages across supported market data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/signal-execution-labs/forex-trading-ai-agent/technical-rating
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 Signal-Execution-Labs/forex-trading-ai-agent --skill technical-rating
Clone the repo
git clone --depth 1 https://github.com/Signal-Execution-Labs/forex-trading-ai-agent

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/signal-execution-labs/forex-trading-ai-agent/technical-rating/github.svg)](https://agentmods.dev/skills/signal-execution-labs/forex-trading-ai-agent/technical-rating)
Your own site
<a href="https://agentmods.dev/skills/signal-execution-labs/forex-trading-ai-agent/technical-rating"><img src="https://agentmods.dev/badge/skills/signal-execution-labs/forex-trading-ai-agent/technical-rating/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-rating

Your own site · 80×15
<a href="https://agentmods.dev/skills/signal-execution-labs/forex-trading-ai-agent/technical-rating"><img src="https://agentmods.dev/badge/skills/signal-execution-labs/forex-trading-ai-agent/technical-rating.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 975 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00000 $0.00975
Opus 5 $0.00000 $0.00487
Sonnet 5 $0.00000 $0.00195
Haiku 4.5 $0.00000 $0.00097

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

Security

Grade A, and why

technical-rating 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 9d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (index.ts, technical-rating.ts), 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

skills/technical-rating/SKILL.md · 129 lines

How it starts

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

Technical Rating

Skill #79 | Category: Analysis | Inspired by: TradingView Technical Rating

Calculate aggregate buy/sell ratings from multiple indicators - just like TradingView's Technical Rating system.

Overview

TradingView shows a "Technical Rating" from Strong Sell to Strong Buy based on 13 indicators. K.I.T. replicates this AND adds more:

  • TradingView: 13 indicators
  • K.I.T.: 26+ indicators with AI weighting

Rating Scale

Rating Value Range Meaning
Strong Buy 0.5 to 1.0 Strongly bullish
Buy 0.1 to 0.5 Moderately bullish
Neutral -0.1 to 0.1 No clear direction
Sell -0.5 to -0.1 Moderately bearish
Strong Sell -1.0 to -0.5 Strongly bearish

Indicators Included

Oscillators (13)

  1. RSI(14) - Oversold/Overbought
  2. Stochastic %K(14,3,3)
  3. CCI(20) - Commodity Channel Index
  4. ADX(14) - Trend strength
  5. AO - Awesome Oscillator
  6. Mom(10) - Momentum
  7. MACD(12,26,9) - Signal line crossover
  8. Stoch RSI(14)
  9. Williams %R
  10. Bull Bear Power
  11. UO - Ultimate Oscillator
  12. ROC - Rate of Change
  13. WaveTrend - LazyBear's popular indicator

Moving Averages (13)

  1. EMA 5, 10, 20, 50, 100, 200
  2. SMA 5, 10, 20, 50, 100, 200
  3. Hull MA 9

Usage

import { getTechnicalRating } from 'kit/skills/technical-rating';

// Get rating for a symbol
const rating = await getTechnicalRating('BTCUSDT', '1h');

console.log(rating);
// {
//   symbol: 'BTCUSDT',
//   timeframe: '1h',
//   rating: 0.62,
//   signal: 'Buy',
//   oscillators: { rating: 0.45, buy: 7, sell: 3, neutral: 3 },
//   movingAverages: { rating: 0.78, buy: 10, sell: 2, neutral: 1 },
//   summary: 'Buy (10 of 13 MAs bullish, RSI 58 neutral)',
//   indicators: { ... }
// }

Multi-Timeframe Analysis

const mtf = await getMultiTimeframeRating('BTCUSDT', ['15m', '1h', '4h', '1d']);
// Aggregates ratings across timeframes

AI Enhancement

K.I.T. goes beyond TradingView by:

Read the full file on GitHub · 129 lines

Files

What ships with it

2 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 · 129 lines · 0 tokens per session scan A 0a8e832e02c4

Subscribe to this mod's changes

technical-rating is a skill published in the GitHub repository Signal-Execution-Labs/forex-trading-ai-agent (136 stars, last pushed 8d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 975 tokens. 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.