Total Ordinary Shares (Historical)
Returns the historical total ordinary (common) shares issued by a company. This represents the total number of common shares that have been issued, including those held in treasury.
Supported Symbols
| Type | Format | Example |
|---|---|---|
| US Stocks | SYMBOL | AAPL, MSFT |
| ETFs | SYMBOL | SPY, QQQ |
| International | SYMBOL | SHOP, TSM |
Parameters
| Parameter | Description |
|---|---|
| Symbol | Stock ticker symbol |
| Year | Fiscal year (2020, 2021) or period code (lq, ly, lt) |
| Quarter | Optional: 1, 2, 3, or 4 for quarterly data |
| TTM | Optional: Set to "TTM" for trailing twelve months |
Share Count Hierarchy
| Metric | Definition |
|---|---|
| Authorized | Maximum shares company can issue |
| Issued | Shares actually issued |
| Outstanding | Issued minus treasury shares |
| Float | Outstanding minus restricted shares |
Notes
- Total ordinary shares includes treasury shares
- Use
hf_Total_common_shares_outstanding()for shares actually trading - Share count affects per-share metrics like EPS and book value
Examples
=hf_Total_ordinary_shares("AAPL", 2023)=hf_Total_ordinary_shares("MSFT", 2023, 2)=hf_Total_ordinary_shares("GOOGL", "ly")=hf_Total_ordinary_shares("AMZN", 2023, , "TTM")=hf_Total_ordinary_shares(A1, B1, C1)When to Use
- Understanding total equity share structure
- Calculating equity dilution from issuances
- Analyzing share issuance trends
- Capital structure analysis
- Comparing issued vs outstanding shares
When NOT to Use
Common Issues & FAQ
Q: Why is this different from shares outstanding? A: Total ordinary shares includes treasury shares (shares the company has repurchased). Outstanding = Issued - Treasury.
Q: Why do shares increase over time? A: Companies issue shares for stock compensation, acquisitions, and capital raises. Some also have significant buybacks reducing outstanding shares.
Q: Why am I getting "NA"? A: Check that the symbol is valid and the company has reported share data for that period.
