Skip to main content
Proxy Basics

What Are Proxy Advisors? The Hidden Power Brokers of Corporate Governance [2026]

7 min read

Understanding Proxy Advisors: The Architects of Corporate Power

In the complex world of modern finance, proxy advisors serve as the bridge between corporate management and the investors who own the company. While the term might sound technical to the layperson, their influence over the global economy is undeniable. If you own an index fund or a stock, these firms likely have a say in how your company is run.

The Definition: What are Proxy Advisors?

Technically known as Shareholder Proxy Research Firms, these entities provide analysis and voting recommendations on issues that are put to a shareholder vote. These issues include:

  • Election of Directors: Assessing if a board member is independent and qualified.
  • Executive Compensation (Say-on-Pay): Evaluating if CEO pay is aligned with performance.
  • Mergers & Acquisitions (M&A): Analyzing if a sale price is fair.
  • ESG Proposals: Voting on environmental or social mandates.
  • The "Big Two" firms—ISS and Glass Lewis—control approximately 97% of the global proxy advisory market. In 2025, their recommendations effectively dictate the outcome of most shareholder meetings for public companies in the S&P 500, FTSE 100, and Nikkei 225.

    ---

    Part 2: The Mechanics of Proxy Advisory

    How the Business Model Works

    The primary revenue stream for proxy advisors comes from subscriptions. Asset managers, hedge funds, and pension funds pay substantial fees to access these voting platforms and research databases.

    However, a significant controversy exists regarding a "conflict of interest": Proxy advisors also sell consulting services to the very corporations they are supposed to critique objectively. This creates a perception—sometimes a reality—where companies pay advisors to improve their governance scores to secure a "For" recommendation.

    The Technical Process: From Filing to Vote

    To understand the value of proxy advisors, one must understand the data volume. A large asset manager may need to vote on 10,000+ shareholder meetings in a single season across 30+ markets. It is humanly impossible for a small governance team to analyze the nuances of Japanese corporate law vs. Delaware law for every holding.

    1. Data Ingestion: The scraper downloads the DEF 14A (Proxy Statement) from the SEC's EDGAR database. 2. Parsing: The script extracts key data points (Director bios, compensation tables, ESG metrics). 3. Policy Application: The data is run against the advisor's Voting Policy Guidelines. If ISS policy states "Independent Audit Committee Chair is mandatory," and the company has a CEO Chairing the Audit Committee, the logic triggers a recommendation to WITHHOLD votes.

    Python Simulation: Analyzing a Proxy Statement

    Below is a simplified Python script demonstrating how a quantitative analyst or "quants" team at a hedge fund might replicate basic proxy advisor logic to audit their recommendations.

    import requests
    

    from bs4 import BeautifulSoup import json

    def analyze_proxy_compensation(ticker): # In a real scenario, you would parse the SEC DEF 14A XML/HTML # Here we simulate the extracted data for a company with excessive CEO pay

    company_data = { "ticker": ticker, "ceo_pay": 25000000, # $25M "median_employee_pay": 60000, # $60k "ceo_pay_ratio": 416, "total_shareholder_return": -0.05 # -5% performance }

    # LOGIC CHECK: Simulating ISS Policy # Policy: Recommend AGAINST the Say-On-Pay if CEO pay > 200x Median AND TSR is negative

    recommendation = "FOR" reason = "Pay aligned with industry standards."

    if company_data["ceo_pay_ratio"] > 200 and company_data["total_shareholder_return"] < 0: recommendation = "AGAINST" reason = f"Excessive CEO Pay Ratio ({company_data['ceo_pay_ratio']}) combined with negative TSR."

    return { "action": recommendation, "rationale": reason }

    Example Execution

    result = analyze_proxy_compensation("ACME Corp") print(f"Voting Recommendation for ACME: {result['action']}") print(f"Rationale: {result['rationale']}")

    ---

    Part 3: The Power and The Controversy

    The "Jamie Dimon" Effect

    CEOs of major banks, such as Jamie Dimon of JPMorgan Chase, have frequently clashed with proxy advisors. In 2022, ISS suggested shareholders vote against JPMorgan's executive pay package due to a lack of specificity regarding the CEO's succession planning and compensation structure. This highlights that even the most successful banks are not immune to the influence of these advisory firms.

    The Problem for Corporations

    For a public company, a "Against" recommendation from ISS can lead to: 1. Loss of Directors: Board members may fail to get re-elected, embarrassing the company. 2. Compensation Rejection: A failed "Say-on-Pay" vote creates bad press and suggests leadership failure. 3. Stock Volatility: Share sell-offs often follow governance scandals.

    The Regulatory Landscape in 2025

    The SEC (Securities and Exchange Commission) in the US has implemented amendments to Rule 14a-1(l). This rule requires proxy advisors to: 1. Disclose Conflicts of Interest: Firms must publicly reveal if they have a consulting relationship with the company they are rating. 2. Allow Company Review: Companies must have a chance to review factual errors in the draft reports before they are sent to clients.

    Despite these regulations, critics argue that the "duopoly" of ISS and Glass Lewis creates an unaccountable bureaucracy that wields political power under the guise of financial analysis, particularly regarding ESG (Environmental, Social, and Governance) criteria.

    ---

    Part 4: Practical Implications for Investors

    If You Are a Retail Investor

    You typically do not need to pay for proxy advisor services. However, you should:

  • Watch the Vote: Check if your fund manager votes with management or against them. This is often found in the fund's "Proxy Voting Record."
  • Read the Dissent: If ISS recommends "Against" a director, read the report. It often uncovers hidden risks (e.g., lack of cyber-security expertise on the board).
  • If You Are a CTO or Web Scraping Expert

    You likely scrape the SEC EDGAR system. Proxy advisor reports are proprietary data, highly protected behind paywalls and anti-scraping measures.

  • Data Value: The "ISS Governance QualityScore" is a quantifiable metric used in algorithmic trading strategies.
  • Scraping Difficulty: Advanced bot detection (Imperva, Akamai) prevents easy scraping of ISS data.
  • Alternative: Open-source alternatives like As You Sow or Morningstar provide proxy data via APIs for quantitative modeling.

Comparison: The Big Two vs. The World

| Feature | Institutional Shareholder Services (ISS) | Glass Lewis | Boutique Advisors (e.g., Egan-Jones) | | :--- | :--- | :--- | :--- | | Market Share | ~60% | ~37% | <3% | | Focus | Broad policy, strict ESG integration | Cost-benefit analysis, governance purity | Credit risk, specific niche dissent | | Influence | High (sets global standards) | High (aggressive on overboarding) | Low (primarily activist driven) | | Tech Stack | Proprietary algorithmic scoring | "Policy Scorecard" automation | Manual expert review |

---

Conclusion: The Gatekeepers of 2025

Proxy advisors remain the unelected power brokers of capitalism. While they provide a necessary service—democratizing information for passive investors—they also consolidate immense power into two private companies. As we move further into 2025, the rise of AI-driven governance analysis may eventually challenge the duopoly of ISS and Glass Lewis, allowing funds to run their own Large Language Models (LLMs) against SEC filings to generate custom voting policies, effectively "disintermediating" the traditional proxy advisor.

Share: