tradingview-tiers

tradingview-tiers is a skill for Claude Code from Miha21222/tradingview-mcp. It costs 183 tokens per session (1,535 once invoked), scanned A, original, MIT.

A set of optional tools for using TradingView account data and controlling the TradingView Desktop app. TradingView is a charting and market-analysis service; these tools can read realtime account-feed quotes, match the user's visible candles, and interact with live charts.

In plain words
What is it for?
Use it for realtime TradingView quotes, matching visible chart candles, reading personal indicators, and drawing boxes or lines on the chart the user is viewing.
Why use it?
It helps when free market feeds do not match the user's TradingView chart or when the user's own indicators and drawings matter. Account access is opt-in because TradingView's terms restrict some automated data use.

Skill for Claude Code

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

Part of the tradingview-mcp plugin — 10 skills, 1 MCP server shipped together

Good fit Use it for realtime TradingView quotes, matching visible chart candles, reading personal indicators, and drawing boxes or lines on the chart the user is viewing.

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

Made for: Claude Code.

Or install tradingview-mcp, the plugin that ships this one along with the rest of its 10 skills, 1 MCP server.

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 tradingview-tiers

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/miha21222/tradingview-mcp/tradingview-tiers"><img src="https://agentmods.dev/badge/skills/miha21222/tradingview-mcp/tradingview-tiers.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 183 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,535 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.00183 $0.01535
Opus 5 $0.00092 $0.00767
Sonnet 5 $0.00037 $0.00307
Haiku 4.5 $0.00018 $0.00153

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

Security

Grade A, and why

tradingview-tiers 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 10d 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/tradingview-tiers/SKILL.md · 94 lines

How it starts

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

TradingView account tiers: session and desktop

Both tiers touch the USER'S OWN TradingView account and are opt-in for a reason: TradingView's ToS prohibits automated/non-display data use, so enabling them is the user's explicit, informed choice. Your job: state the risk once, plainly, before first use — then operate competently, never push a user onto these tiers when the free feeds answer the question.

Decision rule

  • Historical bars, scanning, backtesting → the free feeds (tv_data_get_bars) are equal or better. Do NOT reach for account tiers.
  • Candles that must match what the user SEES on their TV chart, or realtime account-feed quotes → session tier.
  • Seeing or driving the user's actual chart layout (their indicators, their drawings) → desktop tier.
  • Marking up the chart the user is LOOKING AT (draw an FVG box, a level, a trendline on their live layout) → desktop tier drawing tools. For a PNG the user reviews out-of-band, prefer the free chart toolset instead.

Session tier (tv_session_status, tv_session_ohlcv, tv_session_realtime)

Setup (human does step 1, you do the rest):

  1. Human copies the sessionid cookie from a logged-in tradingview.com browser tab (DevTools → Application → Cookies) into the TV_SESSIONID env var. Never obtain, read, print, or store the cookie yourself.
  2. Enable session in TV_TOOLSETS; restart the server; tv_session_status should report usable.

Mechanics you should know:

  • The cookie is exchanged for a websocket JWT automatically; a stderr line "Using anonymous access" before that exchange is harmless library noise.
  • Wire cap: 5000 bars/request; TV_MAX_BARS also applies.
  • "TradingView rejected the session cookie" = the cookie expired (logout or password change rots it) — ask the human for a fresh one; nothing else fixes it.
  • provider is always session; treat its levels as feed-specific like any other.

Desktop tier (tv_desktop_status, tv_desktop_screenshot, tv_desktop_list_drawings, tv_desktop_list_studies, tv_desktop_read_study_plots, tv_desktop_read_study_graphics, tv_desktop_set_symbol, tv_desktop_set_timeframe, tv_desktop_draw, tv_desktop_remove_drawing)

Read the full file on GitHub · 94 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. 10d ago First seen · 94 lines · 183 tokens per session scan A c854a3140b4a

Subscribe to this mod's changes

tradingview-tiers is a skill published in the GitHub repository Miha21222/tradingview-mcp (0 stars, last pushed 15d ago), licensed MIT. It adds 183 tokens to every session and 1,535 once invoked, about $0.0009 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

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

trading-risk-gate

Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.

winstonkoh87/Athena-Public · 53 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens