Skip to main content
Proxy Basics

What Are Proxy Advisory Firms? The Shareholder Voting Giants of 2026

7 min read

The Hidden Power Brokers of Wall Street

When a public company holds its Annual General Meeting (AGM), it presents a list of proposals to shareholders. These can range from electing board directors to approving executive compensation packages or deciding on environmental sustainability goals. For a retail investor, this might mean clicking a few buttons in a brokerage app. However, for institutional investors like BlackRock, Vanguard, or State Street—who own significant stakes in thousands of companies—reading and analyzing thousands of proxy ballots (often 500+ pages long) every year is logistically impossible.

This is where Proxy Advisory Firms enter the equation. They act as outsourced research departments for the asset management industry, providing standardized, data-driven analysis on how shareholders should vote.

The Big Two: An Oligopoly Structure

While dozens of governance experts exist, the market is dominated by two primary players, often referred to as a Duopoly:

1. Institutional Shareholder Services (ISS): A subsidiary of MSCI, ISS is the largest firm globally. Their benchmarks, such as the "ISS QualityScore," are industry standards for measuring corporate governance. 2. Glass Lewis: Owned by the London Stock Exchange Group (LSEG), Glass Lewis is the primary competitor to ISS. While slightly smaller, they are equally influential and often provide the counter-balance to ISS policies.

*Table: Market Share of Top Proxy Advisory Firms (2025 Estimates)*

| Firm | Estimated Market Share | Primary Focus | Unique Selling Point | | :--- | :--- | :--- | :--- | | ISS | ~60% | Global Benchmarking, ESG scoring | Deep integration with MSCI ESG data. | Glass Lewis | ~30% | Policy application, Voting logistics | Detailed policy explanation guides. | Egan-Jones | <10% | Credit ratings focus | Targeted, niche analysis. | Others | <5% | Specialized consulting | Custom research for large pensions.

---

Core Functions: What Do These Firms Actually Do?

Proxy advisory firms provide three main services to the investment community:

1. Research and Voting Recommendations

This is the core product. Firms employ teams of legal analysts, governance experts, and data scientists to review proxy materials. They compare a company's governance structure against their own Voting Policies.

Example Scenario: Imagine Company X has an executive compensation plan that pays the CEO a base salary of $5 million plus a massive "golden parachute" severance package if the company is sold.

  • The Analysis: A proxy analyst will compare this package against industry peers and the firm's internal policy (which might cap severance at 3x salary).
  • The Recommendation: Because the package exceeds the policy benchmark, the firm issues a Recommendation to VOTE AGAINST the compensation committee members.
  • 2. Proxy Voting Solutions (Automation)

    Institutional investors not only need advice; they need to execute thousands of votes electronically before tight deadlines. Firms provide software platforms that allow fund managers to auto-populate their ballots based on the advisory firm's recommendations.

    For example, a Python script at a hedge fund might use an API (hypothetical) to pull these recommendations directly into their order management system:

    Pseudocode for integrating proxy advice into a voting engine

    def get_proxy_advice(ticker, meeting_date): # Hypothetical connection to ISS/Glass Lewis API advisor_api = ProxyAdvisorAPI(api_key='YOUR_KEY')

    proposals = advisor_api.get_proposals(ticker, meeting_date) vote_sheet = []

    for proposal in proposals: proposal_type = proposal['type']

    # Apply Institutional Policy Logic if proposal_type == 'Director Election': if proposal['independence'] == False: vote_sheet.append({'proposal_id': proposal['id'], 'action': 'AGAINST'}) else: vote_sheet.append({'proposal_id': proposal['id'], 'action': 'FOR'})

    elif proposal_type == 'Say on Pay': # If advisor recommends AGAINST, we often follow suit if proposal['advisor_recommendation'] == 'AGAINST': vote_sheet.append({'proposal_id': proposal['id'], 'action': 'AGAINST'})

    return vote_sheet

    Execute voting for a portfolio

    portfolio_votes = get_proxy_advice('AAPL', '2025-06-10') submit_votes(portfolio_votes)

    3. Governance Consulting and Scoring

    Beyond just voting, firms like ISS maintain databases that score companies on Environmental, Social, and Governance (ESG) factors. A low governance score can lead to higher scrutiny from investors, impacting a company's cost of capital.

    ---

    How Do They Make Money?

    The business model is subscription-based. Clients pay annual fees that can range from a few thousand dollars for small boutique investment firms to hundreds of thousands of dollars for large global asset managers.

    However, this model creates a potential Conflict of Interest known as the "Pay-to-Vote" controversy. Critics argue that because companies (issuers) are often the ones purchasing governance consulting services to see *why* they received a negative vote, the advisory firms are hesitant to be too critical, lest they lose revenue. Conversely, if they are too lenient, their investor clients (the asset managers) may switch to a competitor.

    In 2025, regulations in the EU (specifically Shareholder Rights Directive II) and increased scrutiny by the SEC in the US have forced these firms to provide more transparency regarding how they craft their policies and manage conflicts.

    ---

    The Influence on Corporate Strategy

    Because a recommendation from ISS or Glass Lewis can sway 15-30% of the vote instantly (since many passive funds blindly follow the advice), public companies are terrified of receiving a "Against" recommendation.

    This fear influences corporate behavior significantly:

    1. Executive Compensation: Companies rarely set CEO pay packages that deviate significantly from peer benchmarks established by ISS data. 2. Board Diversity: Firms have updated their voting policies to require diverse boards (gender and race). If a board lacks diversity, proxy firms will recommend voting against the nominating committee chair. This has been the single biggest driver of board diversity in S&P 500 companies over the last five years. 3. E&S Activism: In 2025, proxy firms are increasingly aggressive on Climate Change. ISS may recommend voting against directors at companies with insufficient climate transition plans, forcing energy and utility companies to adopt greener policies.

    ---

    The Future of Proxy Advisory

    The landscape is evolving. With the rise of Artificial Intelligence, the cost of analyzing proxy text is dropping.

  • Robo-Governance: New fintech startups are using LLMs (Large Language Models) to scan proxy filings instantly. Instead of paying $50k for a subscription, a hedge fund might run a local AI model to analyze the text of a DEF 14A filing and generate a voting recommendation customized to their specific political views.
  • Political Shifts: There is a growing divide in the US. Some states (anti-ESG) are pressuring firms to stop prioritizing environmental issues, while investors demand it. Proxy advisory firms are caught in the crossfire, leading to the potential for "red state" and "blue state" voting policies.

In conclusion, while the average investor may not know their name, proxy advisory firms are among the most powerful entities in global finance. They act as the mechanism through which the trillions of dollars managed by institutional investors speak, shaping the governance and ethical direction of the corporate world.

Share: