VOOZH about

URL: https://apify.com/nexgendata/china-etf-flow-tracker?fpr=2ayu9b

โ‡ฑ ๐Ÿ‡จ๐Ÿ‡ณ Eastmoney ไธœๆ–น่ดขๅฏŒ China ETF Flow Tracker ยท Apify


๐Ÿ‘ ๐Ÿ‡จ๐Ÿ‡ณ Eastmoney China ETF Flow Tracker ยท ไธœๆ–น่ดขๅฏŒETF่ต„้‡‘ๆตๅ‘ avatar

๐Ÿ‡จ๐Ÿ‡ณ Eastmoney China ETF Flow Tracker ยท ไธœๆ–น่ดขๅฏŒETF่ต„้‡‘ๆตๅ‘

Pricing

from $120.00 / 1,000 etf flow records

Go to Apify Store

๐Ÿ‡จ๐Ÿ‡ณ Eastmoney China ETF Flow Tracker ยท ไธœๆ–น่ดขๅฏŒETF่ต„้‡‘ๆตๅ‘

Institutional-grade Chinese ETF fund-flow data via Eastmoney. Daily snapshot of ~1,468 ETFs (Shanghai + Shenzhen) with super-large/large/medium/small CNY flow breakdown, per-ETF historical flow, and ~496 sector aggregates. For hedge funds, cross-border ETF arbitrage, China sector rotation.

Pricing

from $120.00 / 1,000 etf flow records

Rating

0.0

(0)

Developer

๐Ÿ‘ NexGenData

NexGenData

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 hours ago

Last modified

Share

Get institutional-grade fund-flow data for the Chinese ETF market โ€” roughly 1,468 Shanghai and Shenzhen ETFs โ€” in a single run, sourced live from Eastmoney (ไธœๆ–น่ดขๅฏŒ). Every record carries the four-tier money breakdown retail feeds omit: super-large, large, medium and small order flow in CNY and percent. Three modes cover the full workflow: a daily snapshot of the whole ETF universe, a per-ETF historical flow series (up to 365 trading days), and ~496 industry-sector aggregates for top-down rotation analysis. Residential proxy is built in to clear Eastmoney's throttling. No login required.

What you get

Three modes, one actor:

ModeRecords / runUse case
snapshot~1,468 ETFsDaily flow scan: which ETFs are seeing institutional inflow today?
historicaldaily rows ร— N ETFs (lookback up to 365)Trend reconstruction: is money rotating out of bond ETFs into sector ETFs?
sector_aggregates~496 industry sectorsTop-down view: which CSRC sectors are seeing net inflow before drilling into individual ETFs?

Every record exposes the money breakdown that retail-grade feeds (Sina, StockAnalysis.com) don't carry:

  • Super-large flow (super-institutional, >1M CNY single trades)
  • Large flow (institutional, 200Kโ€“1M CNY)
  • Medium flow (semi-pro, 40Kโ€“200K CNY)
  • Small flow (retail, <40K CNY)

The four-tier breakdown is the kind of detail offshore China-watchers usually only get from paid terminals. Here it ships as a clean, schedulable Apify dataset.

Input

  • Mode (mode) โ€” snapshot (default), historical, or sector_aggregates.
  • ETF filter (etfFilter) โ€” all, sector, index, bond, or commodity.
  • Max results (maxResults) โ€” cap the number of records.
  • Date range (dateRange) โ€” trading days of history (historical mode only; default 30, max 365).
  • Proxy (proxyConfiguration) โ€” residential proxy, on by default to clear Eastmoney throttling.

Example input

{
"mode":"snapshot",
"etfFilter":"sector",
"maxResults":200
}

Example output row

{
"mode":"snapshot",
"ticker":"512880",
"name":"่ฏๅˆธETF",
"category":"sector",
"sector_or_index":"sector",
"price":1.234,
"pct_change":2.15,
"net_main_flow_cny":185000000,
"net_main_flow_pct":4.2,
"super_large_flow_cny":120000000,
"super_large_flow_pct":2.7,
"large_flow_cny":65000000,
"large_flow_pct":1.5,
"medium_flow_cny":-30000000,
"medium_flow_pct":-0.7,
"small_flow_cny":-15000000,
"small_flow_pct":-0.3,
"date":"2026-06-26",
"scraped_at":"2026-06-26T08:30:00Z",
"source":"eastmoney_push2_clist"
}

๐Ÿ’ป Code Example โ€” Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("nexgendata/china-etf-flow-tracker").call(run_input={
"mode":"snapshot",
"etfFilter":"sector",
"maxResults":200
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["ticker"], item["name"], item["net_main_flow_cny"])

๐ŸŒ Code Example โ€” cURL

curl-X POST "https://api.apify.com/v2/acts/nexgendata~china-etf-flow-tracker/run-sync-get-dataset-items?token=YOUR_TOKEN"\
-H"Content-Type: application/json"\
-d'{"mode": "snapshot", "etfFilter": "sector", "maxResults": 50}'

Use cases

  • Hedge-fund position sizing. Re-weight a long-China book based on real-time super-large-order flow, not stale weekly fund-flow PDFs.
  • Cross-border ETF arbitrage. Compare onshore CSI 300 ETF flow (510300) with offshore ASHR flow to detect premium/discount divergence.
  • China sector rotation tracking. sector_aggregates mode shows which CSRC industries are seeing net inflow.
  • Quant signal generation. Multi-tier flow tiers (super-large vs small) help separate informed from noise trades.
  • Cross-listed ETF research. Pair onshore flow with offshore NAV from sister China-MARKETS actors.

โ“ FAQ

Q: How is this different from the eastmoney-china-stock-screener? The screener returns equity quotes (price, P/E, market cap). This actor returns fund-flow specifically โ€” daily net buying/selling broken down by trade-size tier. Different field set, different use case, same vendor.

Q: How fresh is the data? Eastmoney refreshes flow within ~30 minutes after the Shanghai/Shenzhen market close (CST 15:00). Run this actor any time after 16:00 CST for the same-day record.

Q: Why no AUM column on snapshot? Eastmoney's flow endpoint doesn't expose AUM directly. Pair this actor with eastmoney-china-stock-screener for the quote dimension; join on ticker.

Q: Will I get rate-limited? The actor uses Apify Residential Proxy by default โ€” Eastmoney's push2 endpoint throttles to ~3-4 reqs/cloud IP, push2his to ~20-25. Residential rotation handles both transparently.

Q: Can I use the output commercially? Yes. You own the output. Eastmoney's data is publicly accessible; consult their ToS for any restrictions on redistribution at scale.

๐Ÿ’ฐ Pricing

Pay-per-event โ€” you only pay for what you extract.

  • Actor start: $0.00005 per run
  • ETF flow record: $0.50 per record

Example cost: a 50-ETF sector snapshot = $0.00005 + 50 ร— $0.50 = ~$25.00.

๐Ÿ”— Related actors โ€” China-MARKETS family

Agentic payments (AI agent buyers welcome)

This actor supports autonomous payment via Skyfire โ€” AI agents (Claude Desktop, OpenCode, Cursor, Vercel AI SDK, OpenAI Agents SDK) can discover, fund, and invoke it without a human-in-the-loop credit card flow. Agents using Apify's MCP server can find this actor by searching for China ETF flow, Chinese fund flow, or China ETF ่ต„้‡‘ๆตๅ‘ and pay via a Skyfire PAY token.

๐Ÿ“š More From NexGenData

Visit thenextgennexus.com for the full catalog of 170+ actors, REST APIs, MCP servers, Gumroad data packs, and the NexGenData newsletter.

๐Ÿš€ Apify Affiliate Program

New to Apify? Sign up with our referral link โ€” you get free platform credits on signup.


Built and maintained by NexGenData.

You might also like

ETF.com Scraper | ETF Data Holdings and Returns

parseforge/etf-com-scraper

Pull ETF data from ETF.com including ticker, issuer, expense ratio, AUM, holdings, sector breakdown, returns, dividend yield, and benchmark. Compare thousands of ETFs for portfolio analysis, fund research, finance dashboards, and investment screening at scale across markets.

ETF Trends Analyzer

young_billionaires/etf-trends-analyzer

AI-powered ETF market trend analyzer. Get real-time reasons for top gainers, losers, most active, and trending ETFs. Understand ETF price movements, volume spikes and market sentiment with clear, data-driven insights.

๐Ÿ‘ User avatar

Young Billionaires

8

5.0

Finanzfluss ETF Scraper

rainminer/finanzfluss-etf-scraper

Extract ETF profiles from Finanzfluss.de โ€” Testnoten, fees, interest rates, broker features, and ETF fundamentals for German finance research. | Extrahiere ETF-Profile von Finanzfluss.de โ€“ Testnoten, Gebรผhren, Zinssรคtze, Broker-Eigenschaften und ETF-Kennzahlen fรผr die deutsche Finanzforschung.

Dividend & ETF Scraper

sheshinmcfly/dividend-etf-scraper

Extract full dividend history and ETF data from Yahoo Finance by ticker: every dividend's ex-date and amount, trailing-twelve-month payout, plus ETF expense ratio, yield, top holdings, sector weightings and returns. No login or API key needed. Export to JSON, CSV or Excel.

JustETF - ETF Extractor (ISIN, TER, Returns, Holdings, Risk)

giovannibiancia/justetf---etf-extractor-isin-ter-returns-holdings-risk

Extract comprehensive ETF and fund data from JustETF. Get ISIN, TER, returns (1M to MAX), top holdings, sector/country allocation, volatility, Sharpe ratio, max drawdown, and yearly performance. Perfect for portfolio analysis and financial research. Supports 2,800+ European UCITS ETFs.

๐Ÿ‘ User avatar

Giovanni Bianciardi

22

China A-Share Smart-Money Tracker โ€” Institutional Score

nexgendata/china-a-share-smart-money-tracker

Track institutional behavior for every Chinese A-share: institutional score, participation %, main-force (smart-money) cost basis vs price, super-large order net inflow, attention & popularity rank. Eastmoney data, no login.

๐Ÿ‡จ๐Ÿ‡ณ China Financial News โ€” Eastmoney 7ร—24 Live (ๅฟซ่ฎฏ)

nexgendata/china-financial-news-tracker

Live China financial newsflashes from Eastmoney 7ร—24 (ๅฟซ่ฎฏ) โ€” headlines, full text, publish time, and related stock codes. Keyword-filterable for any theme, sector, or company.