| name | stock-fund-flow |
| description | Query A-share industry sector and concept sector fund flows, including main force net inflow/outflow rankings. Uses East Money data center, gets complete JSON data directly from page data components. Triggered when user says "sector funds", "fund flow", "main force net inflow", "sector ranking".
|
| version | 1.0.0 |
A-Share Sector Fund Flow Query
Data Sources
Required Steps
1. Switch to Desktop UA
browser_use set_user_agent desktop_chrome
Mobile version only shows top 20 and has no search function, must use desktop UA
2. Navigate to Page
navigate: https://data.eastmoney.com/bkzj/hy.html
wait_for_dom_stable
3. Get Complete Data from dataview Component
Use execute_js to get data from jQuery dataview component:
const dv = jQuery('#dataview').data('dataview');
const rows = dv.data;
4. Data Fields
f14: Sector name
f2: Sector latest price
f3: Change (%)
f62: Main force net inflow (yuan)
f66: Super large order net inflow (yuan)
f78: Large order net inflow (yuan)
5. Sort and Filter
Sort by change: rows.sort((a, b) => b.f3 - a.f3)
Filter inflow: rows.filter(r => r.f62 > 0)
Filter outflow: rows.filter(r => r.f62 < 0)
6. Data Interpretation
Main force net inflow > 0: Large capital buying, sector may strengthen
Big drop + main force net inflow: Washout (buying support present)
Big drop + main force net outflow: Distribution, caution needed
Report Format
Industry Sector Fund Inflow TOP 5
| Sector | Change | Main Force Net Inflow |
|---|
| Power | +2.46% | +5.56B |
Industry Sector Fund Outflow TOP 5
| Sector | Change | Main Force Net Inflow |
|---|
Notes
- Do not use mobile UA or get_readable to read tables
- Main force net inflow = super large orders + large orders
- About 128 industry sectors, 50 per page