romaco-chart-analysis

romaco-chart-analysis is a skill for Claude Code, Codex from romaco-labs/romaco-mcp. It costs 98 tokens per session (1,241 once invoked), scanned A, original, Apache-2.0.

A tool for building a live financial chart for a ticker such as SPY, AAPL, or BTC-USD and adding a technical analysis to that chart. Technical analysis studies price and trading data using indicators and marked levels.

In plain words
What is it for?
Use it to create or connect a romaco-charts app, load ticker data, add indicators, and draw levels or a trading view directly on the live chart.
Why use it?
It puts the market data, indicators, key levels, and analysis on one working chart, making the reasoning easier to inspect in context.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Good fit Use it to create or connect a romaco-charts app, load ticker data, add indicators, and draw levels or a trading view directly on the live chart.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/romaco-labs/romaco-mcp/romaco-chart-analysis
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 romaco-labs/romaco-mcp --skill romaco-chart-analysis
Clone the repo
git clone --depth 1 https://github.com/romaco-labs/romaco-mcp

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 romaco-chart-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/romaco-labs/romaco-mcp/romaco-chart-analysis/github.svg)](https://agentmods.dev/skills/romaco-labs/romaco-mcp/romaco-chart-analysis)
Your own site
<a href="https://agentmods.dev/skills/romaco-labs/romaco-mcp/romaco-chart-analysis"><img src="https://agentmods.dev/badge/skills/romaco-labs/romaco-mcp/romaco-chart-analysis/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 romaco-chart-analysis

Your own site · 80×15
<a href="https://agentmods.dev/skills/romaco-labs/romaco-mcp/romaco-chart-analysis"><img src="https://agentmods.dev/badge/skills/romaco-labs/romaco-mcp/romaco-chart-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,241 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.00098 $0.01241
Opus 5 $0.00049 $0.00620
Sonnet 5 $0.00020 $0.00248
Haiku 4.5 $0.00010 $0.00124

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

Security

Grade A, and why

romaco-chart-analysis 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.

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/romaco-chart-analysis/SKILL.md · 88 lines

How it starts

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

Romaco chart analysis

Build a real romaco-charts chart, connect it to the romaco MCP bridge, analyze a ticker with the MCP's deterministic tools, and draw the result on the live chart.

Critical gotchas — these break cold runs, do not skip

  1. Fetch market data SERVER-SIDE only. A browser fetch to Yahoo fails with CORS, and a hand-rolled proxy gets 429. Use the yahoo-finance2 library (v3) inside a Vite dev-server middleware — it handles Yahoo's cookie/crumb handshake and retries (it is the same library the MCP uses internally).
  2. No <StrictMode>. Its dev-only double mount/unmount tears down the McpBridge WebSocket ("WebSocket is closed before the connection is established"). Render the app without it.
  3. Apply each indicator exactly once. Call romaco_setup_chart with preset: "clean" (no indicators), then add indicators once during annotation. A preset that pre-loads indicators plus a manual add = duplicated rows in the legend (double EMA/RSI, a flood of VOL).
  4. One MCP owns port 7399. The browser bridge connects to whichever MCP holds 7399. If two agents (e.g. Claude and Codex) both run the romaco MCP, they fight for the port. Run only one.

Workflow

1. Scaffold the chart app

  • Vite + React + TypeScript project (wherever the user asks).
  • Install: romaco-charts, react, react-dom, yahoo-finance2@^3.
  • vite.config.ts — a plugin exposing GET /api/<symbol>-daily, server-side:
    import YahooFinance from 'yahoo-finance2'
    const yf = new YahooFinance()
    // period1 ≈ 1–3y back, enough for EMA200 / volume profile / structure
    const result = await yf.chart(SYMBOL, { period1, interval: '1d' })
    // map each quote → { time, open, high, low, close, volume }
    //   time = Math.floor(new Date(q.date).getTime() / 1000)  // UNIX seconds
    //   skip rows with null OHLC; cache in memory; respond { candles }
    
  • src/App.tsx — fetch the candles from the proxy (same-origin, no CORS), pass data={candles} to <TradingTerminal ref={ref} symbol={SYMBOL} data={candles} />, and mount <McpBridge chartRef={ref} /> below it.
  • src/main.tsx — render WITHOUT <StrictMode>.
  • npm installnpm run dev → open the dev URL in the browser.

Read the full file on GitHub · 88 lines

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 · 88 lines · 98 tokens per session scan A efc2199209cf

Subscribe to this mod's changes

romaco-chart-analysis is a skill published in the GitHub repository romaco-labs/romaco-mcp (1 stars, last pushed 11d ago), licensed Apache-2.0. It adds 98 tokens to every session and 1,241 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-08-31.

Related

Other skills, from other repositories