From rkiding-awesome-finance-skills-1
Searches A-Share/HK/US stock tickers by code or name and retrieves OHLCV historical price data and fundamentals.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rkiding-awesome-finance-skills-1:alphaear-stockThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search A-Share/HK/US stock tickers and retrieve historical price data (OHLCV).
Search A-Share/HK/US stock tickers and retrieve historical price data (OHLCV).
Use scripts/stock_tools.py via StockTools.
search_ticker(query)
{code, name}.get_stock_price(ticker, start_date, end_date)
get_stock_fundamentals(ticker)
pandas, requests, akshare, yfinancescripts/database_manager.py (stock tables)yfinance), you may need to set environment variables if your network cannot reach Yahoo Finance directly:
export HTTP_PROXY="http://<proxy_ip>:<port>"
export HTTPS_PROXY="http://<proxy_ip>:<port>"
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.npx claudepluginhub rkiding/awesome-finance-skillsQueries A-share individual stock data including price history, real-time quotes, capital flow, shareholders, block trades, pledges, ETF, and sector health via tushare-cli.
Fetches real-time stock prices, earnings, financial data, and trending symbols from Yahoo Finance via the `yf` CLI. Outputs JSON for piping to jq.
Fetches financial market data (stocks, futures, forex, crypto, etc.) via the AKShare open-source Python library. Useful for quantitative analysis or data retrieval tasks.