Bill Ackman
Bill Ackman Activist Investor Pershing Square Capital Management Hedge Fund Concentrated Portfolio Long-term Value Investing Harvard MBA CEO
| Investor | Fund | AUM | Style | Notable |
|---|---|---|---|---|
| Bill Ackman | Pershing Square | $18B | Activist | Chipotle, UMG |
| Warren Buffett | Berkshire | $900B+ | Value | Apple, Coca-Cola |
| Carl Icahn | Icahn Enterprises | $15B | Activist | Apple, Netflix |
| Ray Dalio | Bridgewater | $120B | Macro | All Weather |
Portfolio Analysis
# === Pershing Square Portfolio Analysis ===
from dataclasses import dataclass
from typing import List
@dataclass
class Holding:
company: str
ticker: str
weight_pct: float
cost_basis: float
current_price: float
shares_m: float
gain_pct: float
# Approximate Pershing Square Holdings (2024)
holdings = [
Holding("Universal Music Group", "UMG", 22, 22.50, 28.00, 150, 24.4),
Holding("Restaurant Brands Intl", "QSR", 18, 55.00, 72.00, 30, 30.9),
Holding("Chipotle Mexican Grill", "CMG", 15, 1200, 2800, 1.5, 133.3),
Holding("Hilton Worldwide", "HLT", 14, 120, 210, 8, 75.0),
Holding("Howard Hughes Holdings", "HHH", 12, 60, 75, 25, 25.0),
Holding("Alphabet", "GOOG", 10, 130, 175, 7, 34.6),
Holding("Canadian Pacific Kansas", "CP", 9, 70, 85, 12, 21.4),
]
print("=== Pershing Square Portfolio ===")
total_value = 0
total_gain = 0
for h in holdings:
value = h.current_price * h.shares_m
cost = h.cost_basis * h.shares_m
gain = value - cost
total_value += value
total_gain += gain
print(f" [{h.ticker}] {h.company} ({h.weight_pct}%)")
print(f" Cost: | Current: | Gain: {h.gain_pct:.1f}%")
print(f"\n Total Value: M")
print(f" Total Gain: M")
Notable Trades
# === Famous Trades ===
@dataclass
class Trade:
year: str
company: str
action: str
investment: str
result: str
return_pct: float
lesson: str
trades = [
Trade("2020", "COVID CDS Hedge",
"ซื้อ Credit Default Swaps ป้องกัน COVID crash",
"$27 million", "กำไร $2.6 billion ใน 3 สัปดาห์",
9500, "Asymmetric Bet — เสี่ยงน้อย กำไรมหาศาล"),
Trade("2012-2018", "Herbalife Short",
"Short Herbalife อ้าง Pyramid Scheme",
"$1 billion", "ขาดทุน ~$1 billion",
-100, "อย่ายึดติด Thesis ถ้าตลาดไม่เห็นด้วย"),
Trade("2016-2020", "Chipotle",
"ซื้อหุ้น ผลักดันเปลี่ยน CEO เป็น Brian Niccol",
"$1.2 billion", "กำไร $1.5+ billion",
125, "Activist ทำงาน ถ้าเลือกู้คืนบริหารถูกู้คืน"),
Trade("2015-2017", "Valeant Pharmaceuticals",
"ลงทุนหนัก ราคาหุ้นร่วง 90%",
"$4 billion", "ขาดทุน ~$4 billion",
-90, "Due Diligence สำคัญ อย่าเชื่อ Management มากเกิน"),
Trade("2021", "Universal Music Group",
"ซื้อ 10% ก่อน IPO ที่ Amsterdam",
"$3.5 billion", "กำไร ~$1 billion+",
30, "เข้าก่อน IPO ได้ราคาดี"),
]
print("\n=== Notable Trades ===")
for t in trades:
result_str = "WIN" if t.return_pct > 0 else "LOSS"
print(f"\n [{result_str}] {t.year}: {t.company}")
print(f" Action: {t.action}")
print(f" Investment: {t.investment} | Result: {t.result}")
print(f" Return: {t.return_pct:+.0f}%")
print(f" Lesson: {t.lesson}")
# Win/Loss Summary
wins = sum(1 for t in trades if t.return_pct > 0)
losses = len(trades) - wins
print(f"\n Record: {wins}W / {losses}L")
Investment Philosophy
# === Ackman Investment Checklist ===
# Bill Ackman's Criteria
checklist = {
"Simple Business": "เข้าใจธุรกิจได้ง่าย ไม่ซับซ้อน",
"Durable Moat": "มี Competitive Advantage ที่ทนทาน Brand, Network Effect",
"Free Cash Flow": "สร้าง FCF สูงสม่ำเสมอ ไม่ต้อง CapEx มาก",
"Predictable Earnings": "รายได้คาดการณ์ได้ Recurring Revenue ดี",
"Limited Leverage": "หนี้ไม่มากเกินไป D/E Ratio เหมาะสม",
"Excellent Management": "ผู้บริหารดี ถ้าไม่ดี เปลี่ยน (Activist)",
"Intrinsic Value Discount": "ราคาต่ำกว่ามูลค่าที่แท้จริง Margin of Safety",
"Catalyst": "มี Catalyst ที่จะทำให้ราคาขึ้น การเปลี่ยนแปลง",
}
print("Ackman Investment Checklist:")
for criterion, desc in checklist.items():
print(f" [{criterion}]: {desc}")
# Performance
performance = {
"2004-2024 CAGR": "16.5% (vs S&P 500 10.5%)",
"Best Year": "2020: +70.2% (COVID hedge + recovery)",
"Worst Year": "2015: -20.5% (Valeant)",
"AUM Peak": "$20 billion (2024)",
"AUM Low": "$8 billion (2016, after Valeant)",
"Management Fee": "1.5%",
"Performance Fee": "16%",
}
print(f"\n\nPerformance Track Record:")
for k, v in performance.items():
print(f" {k}: {v}")
# Lessons
lessons = [
"Concentrated Portfolio: ถือน้อยตัว รู้จักทุกตัวดี",
"Asymmetric Bets: หา Trade ที่เสี่ยงน้อย กำไรมาก",
"Cut Losses: ยอมตัดขาดทุน ไม่ยึดติด (Herbalife, Valeant)",
"Activist Value: สร้างมูลค่าจากการเปลี่ยนแปลง",
"Communication: อธิบาย Thesis ให้นักลงทุนเข้าใจ",
]
print(f"\n\nKey Lessons:")
for i, l in enumerate(lessons, 1):
print(f" {i}. {l}")
เคล็ดลับ
- Concentrated: ถือหุ้นน้อยตัว รู้จักดี ดีกว่ากระจายมากเกินไป
- Moat: เลือกบริษัทที่มี Competitive Advantage ชัดเจน
- FCF: ดู Free Cash Flow ไม่ใช่แค่ Revenue Growth
- Cut Loss: ยอมตัดขาดทุนเมื่อ Thesis ผิด
- Patience: ลงทุนระยะยาว 3-5 ปี รอ Catalyst ทำงาน
ข้อควรรู้สำหรับนักลงทุนไทย ปี 2026
การลงทุนในสินทรัพย์ดิจิทัลและตลาดการเงินต้องเข้าใจความเสี่ยง สิ่งสำคัญที่สุดคือ การจัดการความเสี่ยง ไม่ลงทุนมากกว่าที่พร้อมจะเสีย กระจายพอร์ตลงทุนในสินทรัพย์หลายประเภท ตั้ง Stop Loss ทุกครั้ง และไม่ใช้ Leverage สูงเกินไป
ในประเทศไทย กลต กำหนดกรอบกฎหมายชัดเจนสำหรับ Digital Assets ผู้ให้บริการต้องได้รับใบอนุญาต นักลงทุนต้องทำ KYC และเสียภาษี 15% จากกำไร แนะนำให้ใช้แพลตฟอร์มที่ได้รับอนุญาตจาก กลต เท่านั้น เช่น Bitkub Satang Pro หรือ Zipmex
สำหรับ Forex ต้องเลือก Broker ที่มี Regulation จากหน่วยงานที่น่าเชื่อถือ เช่น FCA, ASIC, CySEC เริ่มต้นด้วย Demo Account ก่อน เรียนรู้ Technical Analysis และ Fundamental Analysis ให้เข้าใจ และมีแผนการเทรดที่ชัดเจน ไม่เทรดตามอารมณ์
เปรียบเทียบข้อดีและข้อเสีย
จากตารางเปรียบเทียบจะเห็นว่าข้อดีมีมากกว่าข้อเสียอย่างชัดเจน โดยเฉพาะในแง่ของประสิทธิภาพและความสามารถในการ Scale สำหรับข้อเสียส่วนใหญ่สามารถแก้ไขได้ด้วยการเรียนรู้อย่างเป็นระบบและวางแผนทรัพยากรให้เหมาะสม
Bill Ackman คือใคร
CEO Pershing Square $18B Activist Investor Harvard MBA Short Herbalife Chipotle Universal Music COVID Hedge $2.6B กำไร
Activist Investor คืออะไร
ซื้อหุ้นมาก ผลักดันเปลี่ยนแปลง CEO กลยุทธ์ ลดค่าใช้จ่าย Spin-off เพิ่มมูลค่า Carl Icahn Nelson Peltz Dan Loeb
กลยุทธ์การลงทุนของ Bill Ackman เป็นอย่างไร
Concentrated 8-12 ตัว Long-term 3-5 ปี High Quality Durable Moat FCF Predictable Activist Push Public Campaign
บทเรียนจาก Bill Ackman มีอะไร
Conviction ยืนหยัด ยอมรับผิดพลาด Valeant Concentrated Upside Downside สูง COVID Hedge Asymmetric Communication
สรุป
Bill Ackman Activist Investor Pershing Square Concentrated Portfolio Long-term Value FCF Moat Chipotle COVID Hedge Herbalife Valeant Universal Music Lessons
