npx skills add rkiding/awesome-finance-skills --skill alphaear-stock
ninehills/skills
alphaear-stock
Search A-Share/HK/US finance stock tickers and retrieve finance stock price history. Use when user asks about finance stock codes, recent price changes, or specific company finance stock info.
Installation
npx skills add ninehills/skills --skill alphaear-stock
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Fetch hot finance news, unified trends, and prediction financial market data. Use when the user…
1.5K installsSearch A-Share/HK/US finance stock tickers and retrieve finance stock price history. Use when u…
1.2K installsAnalyze finance text sentiment using FinBERT or LLM. Use when the user needs to determine the s…
623 installsMarket prediction skill using Kronos. Use when user needs finance market time-series forecastin…
564 installsTrack finance investment signal evolution and update logic based on new finance market informat…
536 installsPerform finance web searches and local context searches. Use when the user needs general financ…
523 installsAlso in this package
Other skills from ninehills/skills · top by installs.
npx skills add ninehills/skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,532 B -
docs
SUMMARY.md214 B
History
- First seen on skills.sh
- First recorded snapshot · 11 installs
SKILL.md
AlphaEar Stock Skill
Overview
Search A-Share/HK/US stock tickers and retrieve historical price data (OHLCV).
Capabilities
1. Stock Search & Data
Use scripts/stock_tools.py via StockTools.
- Search:
search_ticker(query)
- Fuzzy search by code or name (e.g., "Moutai", "600519"). - Returns: List of {code, name}.
- Get Price:
getstockprice(ticker, startdate, enddate)
- Returns DataFrame with OHLCV data. - Dates format: "YYYY-MM-DD".
- Get Fundamentals:
getstockfundamentals(ticker)
- Returns dict with sector, industry, market cap, PE ratio, and summary. - Supports A-Share/HK/US stocks.
Dependencies
pandas,requests,akshare,yfinancescripts/database_manager.py(stock tables)
Notes
- Proxy: For US stock data (via
yfinance), you may need to set environment variables if your network cannot reach Yahoo Finance directly:
``bash export HTTPPROXY="http://<proxyip>:<port>" export HTTPSPROXY="http://<proxyip>:<port>" ``
- A-Share/HK: Data is primarily fetched via
akshare(EastMoney), which usually works best with a direct connection in China. The tool automatically detects proxy issues and attempts direct connection for these markets.