From trading-skills
Queries Chinese A-share concept boards (概念板块) via tushare-cli: hot boards, capital flow, constituent stocks, and volume anomaly scanning.
How this skill is triggered — by the user, by Claude, or both
Slash command
/trading-skills:tushare-conceptsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
# Today's hot boards ranked by price change
tushare-cli concepts hot-boards --trade-date 20240201
# All boards with daily stats
tushare-cli concepts board --trade-date 20240201
# Stocks in a board
tushare-cli concepts members --ts-code BK0714 # e.g., AI concept
# Capital flow into boards
tushare-cli concepts moneyflow --trade-date 20240201
# Volume anomaly scanner
tushare-cli concepts volume-anomaly --end-date 20240201 --vol-ratio 2.0
tushare-cli concepts hot-boards --trade-date 20240201 --limit 10
tushare-cli --format json concepts moneyflow --trade-date 20240201 | \
jq 'sort_by(-.net_amount) | .[:10][] | {name, net_amount, pct_chg}'
tushare-cli concepts volume-anomaly --end-date 20240201 --vol-ratio 3.0 --price-min 0 --price-max 10
npx claudepluginhub oopslink/trading-skills --plugin trading-skillsAnalyzes A-share money flow from tick-level data via CLI, classifying orders into super-large/large/medium/small tiers. Supports historical and real-time modes for tracking main force and retail capital flows.
Queries A-share securities data (K-line, financials, macro, industry) via the free BaoStock Python API, returning pandas DataFrames.
Generates A-share stock picks and long/short opportunities via quantitative value/growth/quality screens, fund flows, dragon-tiger lists, and market microstructure data. Triggers on '选股','筛选','推荐股票' requests.