ashares_sector_flows
Pack: china-exchange-data · Endpoint: https://gateway.pipeworx.io/china-exchange-data/mcp
深交所 A股行业板块统计 — SZSE-official per-industry (行业) turnover ranking for the Chinese A-share market: turnover amount (成交金额/亿元), share volume, company count, total and float market cap, and weighted-average P/E, one row per SZSE industry classification (A 农林牧渔 … T 综合 etc.), for a given trading day. This is the exchange’s own published turnover-by-industry statistic — NOT the vendor-computed “主力资金净流入” (large-order net capital inflow) metric that East Money / 同花顺-style trackers publish; neither SZSE nor SSE discloses that classification publicly, so it is not offered here. Answers “今天A股行业板块成交额排名”, “which sectors traded the most today”, “SZSE industry turnover ranking”. Sorted by turnover amount descending. Source: SZSE ShowReport CATALOGID=1804_gptj_merge_after (keyless).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | no | Trading day as YYYY-MM-DD (default: today). SZSE returns the most recently published session if the exact date has no data yet. |
top | number | no | How many industries to return, 1-50 (default 10, all if omitted total is under that). |
Example call
Arguments
{
"top": 10
}
curl
curl -X POST https://gateway.pipeworx.io/china-exchange-data/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ashares_sector_flows","arguments":{"top":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ashares_sector_flows', {
"top": 10
});
More examples
{
"date": "2026-09-07",
"top": 5
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"china-exchange-data": {
"url": "https://gateway.pipeworx.io/china-exchange-data/mcp"
}
}
}
See Getting Started for client-specific install steps.