Vietnamese stock market analysis toolkit for Claude Code. Covers stock analysis, market research, technical analysis, fundamental analysis, macro research, news crawling, and batch data collection.
npx claudepluginhub hongbietcode/claude-finance-kitVietnamese stock market analysis toolkit for Claude Code. Skill: finance-kit (orchestrator — routes queries, collects data via scripts, spawns agents by name, produces HTML reports). Agents: fundamental-analyst (valuation, financials), technical-analyst (trend, momentum, S/R), macro-researcher (GDP, CPI, rates, FX), lead-analyst (synthesis, decisions for T3/T4). Data sources: VCI, KBS, MAS, VND, FMP, Perplexity.
Vietnamese stock market analysis toolkit for AI coding assistants.
Fundamentals • Technicals • Macro • News • Screening • Fund Analysis
claude-finance-kit is a Python library + AI plugin that gives your coding assistant deep access to Vietnamese stock market data and analysis tools. It works as a Claude Code plugin (via Marketplace), and also supports Cursor and GitHub Copilot through a CLI installer.
Ask natural language questions — the plugin auto-routes to the right analysis workflow:
"Analyze FPT stock"
"Market overview today"
"Compare VNM vs MSN"
"Latest news sentiment for HPG"
Claude Code analyzing HPG stock — orchestrating fundamental and technical agents in parallel. Download plugin →
pip install claude-finance-kit
Add the marketplace:
/plugin marketplace add hongbietcode/claude-finance-kit
Browse and install:
Run /plugin to open the plugin manager. Go to the Discover tab to find claude-finance-kit.
Select it and choose an installation scope:
Or install directly:
/plugin install claude-finance-kit@hongbietcode-claude-finance-kit
Run /reload-plugins to activate.
npx claude-finance-kit-cli init --ai cursor # Cursor
npx claude-finance-kit-cli init --ai copilot # GitHub Copilot
npx claude-finance-kit-cli init --ai claude # Claude Code (CLI alternative)
Once installed, just ask naturally — the plugin auto-invokes the right skill:
"Analyze FPT stock" → finance-kit (stock deep dive)
"Market overview today" → finance-kit (market briefing)
"Compare VNM vs MSN" → finance-kit (comparative)
"Latest news sentiment for HPG" → finance-kit (news sentiment)
/finance-kit "tôi mua HPG ở giá 26.6k, có nên bán không" → finance-kit (full analysis)
from claude_finance_kit import Stock, Market, Macro, Commodity, Fund
# Stock data
stock = Stock("FPT")
stock.quote.history(start="2025-01-01", end="2025-12-31")
stock.finance.income_statement(period="quarter", lang="en")
stock.company.overview()
# Market valuation
market = Market("VNINDEX")
market.pe(duration="5Y")
market.top_gainer(limit=10)
# Macro indicators
macro = Macro()
macro.gdp()
macro.cpi()
macro.interest_rate()
# Commodities
commodity = Commodity()
commodity.gold()
commodity.oil()
# Fund analysis
fund = Fund()
fund.listing("STOCK")
from claude_finance_kit import Stock, Indicator
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.