
A quantitative analysis system built on TradingView's MCP tools that combines real-time quotes, technical indicators, and fundamental screening into structured workflows. It enforces a metadata-first architecture where you must fetch valid parameter values before querying leaderboards or market data. The skill shines in multi-timeframe analysis and pattern recognition, with pre-built workflows for everything from sector rotation to event-driven trading. It includes reference documentation for technical scoring models and risk management formulas, plus China A-share examples if that's your market. The disclaimer is there for good reason: this generates analysis frameworks, not trading signals you should blindly follow.
npx -y skills add hypier/tradingview-quantitative-skills --skill tradingview-quantitative --agent claude-codeInstalls into .claude/skills of the current project.
Professional quantitative investment analysis system based on TradingView MCP tools providing insights and decision recommendations.
Hosted MCP (25 tradingview_* tools): add https://mcp.tradingviewapi.com/mcp with "type": "http" and sign in with Console. Older clients may use "type": "streamable-http". JWT fallback: POST /api/mcp/generate, then copy exampleConfig. RapidAPI without Console OAuth: local npx -y @ivotoby/openapi-mcp-server (OpenAPI tools, not hosted tradingview_*).
Before calling tradingview_get_leaderboard, you must first call tradingview_get_metadata to get parameter values:
type='markets' → Get market_code (required for stock leaderboard)type='tabs' + asset_type → Get available tab valuestype='columnsets' → Get available columnset valuesRead references/api-documentation.md for the complete metadata dictionary (market codes, tabs, columnsets, and exchanges).
tradingview_get_ohlcv / tradingview_get_ohlcv_batch (Japanese candles only; never Heikin-Ashi)tradingview_get_price / tradingview_get_price_batch with type='HeikinAshi' or Range| Need | Tool | Key Parameters |
|---|---|---|
| Search instruments | tradingview_search_market | query, filter(stock/crypto/forex...) |
| Real-time quotes | tradingview_get_quote / tradingview_get_quote_batch | symbol, session |
| Standard OHLCV | tradingview_get_ohlcv / tradingview_get_ohlcv_batch | symbol, timeframe(1/5/15/30/60/240/D/W/M), range(max 500) |
| Chart-style candles | tradingview_get_price / tradingview_get_price_batch | same timeframes; type='HeikinAshi' or Japanese |
| Chart events | tradingview_get_price_events | symbol, timeframe(D), range — earnings/dividends/splits markers |
| Technical analysis | tradingview_get_ta | symbol, include_indicators=true for detailed indicators |
| Company fundamentals | tradingview_get_market_data | symbol, category(company/indicators/financials_quarterly/dividend/analyst_recommendations...) |
| Leaderboard | tradingview_get_leaderboard | asset_type, tab, market_code, columnset(overview/performance/valuation/dividends/profitability/income_statement/balance_sheet/cash_flow/technical) |
| Advanced screener | tradingview_get_screener_presets + tradingview_get_screener_filter_options + tradingview_screen_assets | asset type, preset fields, filter operators, market |
| News | tradingview_get_news / tradingview_get_news_detail | market_country, lang(zh-Hans/en/ja), symbol |
| Community ideas | tradingview_get_ideas_hot / tradingview_get_ideas_editors_picks / tradingview_get_ideas_by_symbol / tradingview_get_minds / tradingview_get_idea_detail | symbol, lang, image_url |
| Economic calendar | tradingview_get_calendar | type(economic/earnings/revenue/ipo), from/to(Unix seconds), market |
| World economy | tradingview_get_world_economy_indicators | indicator slug, region |
| Metadata | tradingview_get_metadata / tradingview_get_world_economy_indicator_metadata | type(markets/tabs/columnsets/languages/exchanges/world_economy_indicators) |
Read the relevant workflow reference before performing a multi-step analysis:
tradingview_get_market_data)tradingview_screen_assets)tradingview_get_news / tradingview_get_news_detail)tradingview_get_price_events)tradingview_search_market)tradingview_get_quote / tradingview_get_quote_batch)tradingview_get_quote_batch + tradingview_get_ohlcv_batch + tradingview_get_ta)tradingview_get_metadata)Read these references only when their subject is required:
tradingview_* MCP toolscomprehensive scoring model, RSI, MACD)double bottom, head and shoulders, triangle)Kelly formula, volatility, stop loss take profit)The analysis and recommendations provided by this Skill are for reference only and do not constitute investment advice. Investing involves risks; decisions should be made cautiously.