china-pitch-deck
Purpose
Populate A股投行 Pitch Deck / 路演材料 templates with financial data, charts, and narrative for Chinese target companies.
Data Sources
Tier 0 — 万得 Wind(最全面付费数据)
Tier 1 — 同花顺 iFind(付费精确数据)/ AkShare MCP(Tier-2 免费备选)
get_stock_info(ticker) → Company overview
get_quote(ticker) → Current valuation, multiples
get_historical_data(ticker) → Stock performance chart data
get_financials(ticker, "income", "annual") → Revenue, profit trends
get_financials(ticker, "balance", "annual") → Balance sheet
get_financials(ticker, "cashflow", "annual") → Cash flow
get_industry_stocks(industry="...") → Peer companies
Secondary Sources
- 巨潮资讯 — annual reports, IR presentations
- 公司官网 — investor relations materials
- 券商研报 — existing research for reference
- Wind / Choice — comprehensive data
Workflow
Step 1: Understand the Template
Typical A-share pitch deck sections:
| Slide # |
Section |
Content |
| 1 |
Cover |
Company name, ticker, transaction overview |
| 2 |
Executive Summary |
Investment highlights, valuation summary |
| 3 |
Company Overview |
Business model, history, structure |
| 4 |
Industry Overview |
Market size, trends, policy |
| 5 |
Competitive Landscape |
Market share, positioning |
| 6 |
Financial Summary |
Revenue, profit, margins (historical) |
| 7 |
Operating Metrics |
Key KPIs by segment |
| 8 |
Trading Comparables |
Peer multiples, dispersion |
| 9 |
Precedent Transactions |
Comparable M&A |
| 10 |
DCF Valuation |
Football field, sensitivity |
| 11 |
Transaction Rationale |
Why now, why this buyer |
| 12 |
Risks & Mitigations |
Key risks and how to address |
Step 2: Gather Data
For each section, pull required data:
# Company data
get_stock_info(ticker)
get_quote(ticker)
# Financial history
get_financials(ticker, "income", "annual")
get_financials(ticker, "balance", "annual")
get_financials(ticker, "cashflow", "annual")
# Peer data
peers = get_industry_stocks(industry="...")
for peer in peers:
get_quote(peer["代码"])
get_financials(peer["代码"], "income", "annual")
Step 3: Populate Each Slide
Slide-by-slide guidelines:
Slide 1: Cover
- Company name and logo
- Stock code and listing board
- Transaction description
- Date and confidentiality
Slide 2: Executive Summary
- 3-5 investment highlights
- Key financial metrics (revenue, profit, growth)
- Valuation summary (range, midpoint)
- Recommendation
Slide 3: Company Overview
- Business description (主营业务)
- History and milestones
- Organizational structure
- Management team
- Geographic footprint
Slide 4: Industry Overview
- Market size and growth (市场规模, 增速)
- Key trends (发展趋势)
- Policy environment (政策环境)
- A-share sector context
Slide 5: Competitive Landscape
- Market share map
- Competitive positioning
- Key competitors with comparison table
- Competitive advantages (竞争优势)
Slide 6: Financial Summary
- Revenue and profit history (3-5 years)
- Margin trends
- Growth rates
- Key ratio trends
Slide 7: Operating Metrics
- Segment revenue breakdown
- Volume/unit metrics
- Capacity/utilization
- Quality metrics (ROE, FCF)
Slide 8: Trading Comparables
- Peer comparison table
- Scatter plot (Growth vs Multiple)
- Multiple dispersion analysis
- Where target trades vs peers
Slide 9: Precedent Transactions
- Comparable China M&A deals
- Transaction multiples
- Premiums paid
- Strategic rationale
Slide 10: DCF & Football Field
- DCF valuation summary
- Football field chart
- Sensitivity tables
- Target price range
Slide 11: Transaction Rationale
- Strategic fit
- Synergy potential
- Why now
- Value creation plan
Slide 12: Risks
- Key risk factors
- Mitigation strategies
- Probability and impact assessment
Step 4: Design & Formatting
Design principles:
- Consistent with firm's pitch deck template
- Clean, professional appearance
- Data-driven, not text-heavy
- Key numbers prominent
- Charts simple and readable
China-specific formatting:
- 人民币 (CNY) as currency
- A-share terminology (主板/创业板/科创板)
- Chinese company names with tickers
- Policy context where relevant
Step 5: Quality Check
Before finalizing:
China-Specific Pitch Considerations
Transaction Context
| Transaction Type |
A-share Considerations |
| 借壳上市 (Backdoor listing) |
Shell company analysis, regulatory timeline |
| 吸收合并 (Merger) |
Exchange ratio, shareholder approval |
| 重大资产重组 (Major asset restructuring) |
CSRC review, disclosure requirements |
| 私有化 (Take-private) |
Premium required, relisting timeline |
| 产业并购 (Strategic M&A) |
Synergy focus, anti-monopoly review |
Valuation Benchmarks
A-share M&A premiums:
- Control premium: 20-40% typical
- Strategic premium: 30-50%
- Take-private: 30-50% minimum
- Distressed: varies widely
Comparable multiples (China):
- EV/Revenue: 2-10x (varies by sector)
- EV/EBITDA: 6-15x (typical for industrials)
- P/E: 10-40x (sector dependent)
Regulatory Context
Key regulations to reference:
- 《上市公司重大资产重组管理办法》
- 《上市公司收购管理办法》
- 反垄断审查 (SAMR)
- 经营者集中申报 thresholds
Quality Checks
Before delivering:
1---2name: china-pitch-deck3description: Populate A-share investment banking pitch deck templates with data from source files. Adapted from the original pitch-deck skill for Chinese companies, A-share market data, and Chinese business context. Triggers on "A股Pitch Deck", "路演PPT", "pitch deck China", "pitch deck A-share", or "fill pitch template for [company]".4---56# china-pitch-deck78## Purpose910Populate **A股投行 Pitch Deck / 路演材料** templates with financial data, charts, and narrative for Chinese target companies.1112## Data Sources1314### Tier 0 — 万得 Wind(最全面付费数据)15- 覆盖:A股/港美股/基金/指数/债券/宏观/研报/分析(44个工具)16- MCP 服务:`wind-mcp`(需 `WIND_API_KEY` 密钥,以 `ak_` 开头)17- 优势:全市场覆盖面最广、数据最全面、包含研报和量化分析18- 密钥申请:https://aifinmarket.wind.com.cn/#/home1920### Tier 1 — 同花顺 iFind(付费精确数据)/ AkShare MCP(Tier-2 免费备选)2122```python23get_stock_info(ticker) → Company overview24get_quote(ticker) → Current valuation, multiples25get_historical_data(ticker) → Stock performance chart data26get_financials(ticker, "income", "annual") → Revenue, profit trends27get_financials(ticker, "balance", "annual") → Balance sheet28get_financials(ticker, "cashflow", "annual") → Cash flow29get_industry_stocks(industry="...") → Peer companies30```3132### Secondary Sources3334- **巨潮资讯** — annual reports, IR presentations35- **公司官网** — investor relations materials36- **券商研报** — existing research for reference37- **Wind / Choice** — comprehensive data3839## Workflow4041### Step 1: Understand the Template4243**Typical A-share pitch deck sections:**4445| Slide # | Section | Content |46|---------|---------|---------|47| 1 | Cover | Company name, ticker, transaction overview |48| 2 | Executive Summary | Investment highlights, valuation summary |49| 3 | Company Overview | Business model, history, structure |50| 4 | Industry Overview | Market size, trends, policy |51| 5 | Competitive Landscape | Market share, positioning |52| 6 | Financial Summary | Revenue, profit, margins (historical) |53| 7 | Operating Metrics | Key KPIs by segment |54| 8 | Trading Comparables | Peer multiples, dispersion |55| 9 | Precedent Transactions | Comparable M&A |56| 10 | DCF Valuation | Football field, sensitivity |57| 11 | Transaction Rationale | Why now, why this buyer |58| 12 | Risks & Mitigations | Key risks and how to address |5960### Step 2: Gather Data6162**For each section, pull required data:**6364```python65# Company data66get_stock_info(ticker)67get_quote(ticker)6869# Financial history70get_financials(ticker, "income", "annual")71get_financials(ticker, "balance", "annual")72get_financials(ticker, "cashflow", "annual")7374# Peer data75peers = get_industry_stocks(industry="...")76for peer in peers:77 get_quote(peer["代码"])78 get_financials(peer["代码"], "income", "annual")79```8081### Step 3: Populate Each Slide8283**Slide-by-slide guidelines:**8485#### Slide 1: Cover86- Company name and logo87- Stock code and listing board88- Transaction description89- Date and confidentiality9091#### Slide 2: Executive Summary92- 3-5 investment highlights93- Key financial metrics (revenue, profit, growth)94- Valuation summary (range, midpoint)95- Recommendation9697#### Slide 3: Company Overview98- Business description (主营业务)99- History and milestones100- Organizational structure101- Management team102- Geographic footprint103104#### Slide 4: Industry Overview105- Market size and growth (市场规模, 增速)106- Key trends (发展趋势)107- Policy environment (政策环境)108- A-share sector context109110#### Slide 5: Competitive Landscape111- Market share map112- Competitive positioning113- Key competitors with comparison table114- Competitive advantages (竞争优势)115116#### Slide 6: Financial Summary117- Revenue and profit history (3-5 years)118- Margin trends119- Growth rates120- Key ratio trends121122#### Slide 7: Operating Metrics123- Segment revenue breakdown124- Volume/unit metrics125- Capacity/utilization126- Quality metrics (ROE, FCF)127128#### Slide 8: Trading Comparables129- Peer comparison table130- Scatter plot (Growth vs Multiple)131- Multiple dispersion analysis132- Where target trades vs peers133134#### Slide 9: Precedent Transactions135- Comparable China M&A deals136- Transaction multiples137- Premiums paid138- Strategic rationale139140#### Slide 10: DCF & Football Field141- DCF valuation summary142- Football field chart143- Sensitivity tables144- Target price range145146#### Slide 11: Transaction Rationale147- Strategic fit148- Synergy potential149- Why now150- Value creation plan151152#### Slide 12: Risks153- Key risk factors154- Mitigation strategies155- Probability and impact assessment156157### Step 4: Design & Formatting158159**Design principles:**160- Consistent with firm's pitch deck template161- Clean, professional appearance162- Data-driven, not text-heavy163- Key numbers prominent164- Charts simple and readable165166**China-specific formatting:**167- 人民币 (CNY) as currency168- A-share terminology (主板/创业板/科创板)169- Chinese company names with tickers170- Policy context where relevant171172### Step 5: Quality Check173174**Before finalizing:**175- [ ] All data sourced from 巨潮 / AkShare176- [ ] Charts readable and properly labeled177- [ ] Numbers consistent across slides178- [ ] Valuation analysis sound179- [ ] Design consistent with template180- [ ] Confidentiality marked181- [ ] All citations included182183## China-Specific Pitch Considerations184185### Transaction Context186187| Transaction Type | A-share Considerations |188|-----------------|------------------------|189| 借壳上市 (Backdoor listing) | Shell company analysis, regulatory timeline |190| 吸收合并 (Merger) | Exchange ratio, shareholder approval |191| 重大资产重组 (Major asset restructuring) | CSRC review, disclosure requirements |192| 私有化 (Take-private) | Premium required, relisting timeline |193| 产业并购 (Strategic M&A) | Synergy focus, anti-monopoly review |194195### Valuation Benchmarks196197**A-share M&A premiums:**198- Control premium: 20-40% typical199- Strategic premium: 30-50%200- Take-private: 30-50% minimum201- Distressed: varies widely202203**Comparable multiples (China):**204- EV/Revenue: 2-10x (varies by sector)205- EV/EBITDA: 6-15x (typical for industrials)206- P/E: 10-40x (sector dependent)207208### Regulatory Context209210**Key regulations to reference:**211- 《上市公司重大资产重组管理办法》212- 《上市公司收购管理办法》213- 反垄断审查 (SAMR)214- 经营者集中申报 thresholds215216## Quality Checks217218Before delivering:219- [ ] All financial data sourced and accurate220- [ ] Valuation analysis complete221- [ ] Charts and tables populated correctly222- [ ] Design consistent with template223- [ ] China-specific context included224- [ ] Risk factors appropriate225- [ ] Confidentiality marked226> **Data Source Mode Switch**: Set env var `IFIND_DATA_SOURCE_MODE` to control data source preference.227> - `ifind-only` (strict): Use iFind only, error if unavailable228> - `ifind-fallback` (default): iFind preferred, fallback to AkShare229> - `akshare-only`: Skip iFind, use AkShare only230> - `wind-only`: Wind only, error if unavailable231> - `wind-fallback`: Wind first, fallback to iFind → AkShare