FactSet Estimates

These functions provide data from the “FactSet Estimates - Consensus” data set, which provides KPI data with comparable actuals and consensus estimates, sourced from 800+ contributors. (See https://www.factset.com/marketplace/catalog/product/factset-estimates-consensus)

fs_actual(parameter, /, freq='FQ/FS', alignment='afp', *, currency=None, currency_method=None)

Retrieves time series with the Actuals values from the FactSet Estimates dataset.

Parameters:
  • parameter (str) – A FactSet estimates data item.

  • freq (str) – A fiscal frequency: FQ/FS, FQ, FS, FY or LTM.

  • alignment – An alignment: afp, fp, pd or rd.

  • currency (str) – Optionally, a three-letter currency code (e.g. USD or EUR). If a currency is given, the values are converted to the given currency.

  • currency_method (str) – How the exchange rate is determined. Either 'mean' (use the average exchange rate over the fiscal period) or 'last' (use the exchange rate of the last day in the fiscal period). The default value is 'mean'. See interval-based currency conversion.

Examples:

Actual interim (quarterly / semi-annual) sales for a company:

fs_actual('sales')

Actual interim sales in USD:

fs_actual('sales', currency='USD')

Actual annual sales:

fs_actual('sales', freq='FY')
fs_consensus(parameter, /, statistic='mean', freq='FQ/FS', alignment='afp', unreported_periods=None, *, currency: str, currency_method: str, relative_to: str, relative_days: int)

Retrieves time series of consensus estimates for each period from the FactSet Estimates dataset. The latest consensus value for each fiscal period is returned by default; for historical periods this is the consensus before results were reported.

Parameters:
  • parameter (str) – A FactSet estimates data item.

  • statistic (str) – The type of the statistic to fetch. The options are 'mean', 'median', 'min', 'max', 'stdev' (standard deviation of broker estimates), 'count' (number of broker estimates), 'up' (number of broker estimates revised upwards) and 'down' (number of broker estimates revised downwards). The default value is 'mean'.

  • freq (str) – A fiscal frequency: FQ/FS, FQ, FS or FY.

  • alignment – An alignment: afp, fp, pd or rd.

  • unreported_periods (int) – Number of unreported periods to return. The default is None, which returns all unreported periods.

  • currency (str) – Optionally, a three-letter currency code (e.g. USD or EUR). If a currency is given, the values are converted to the given currency.

  • currency_method (str) – How the exchange rate is determined. Either 'mean' (use the average exchange rate over the fiscal period) or 'last' (use the exchange rate of the last day in the fiscal period). The default value is 'mean'. See interval-based currency conversion.

  • relative_to (str) – Optionally, the known time of the data for each fiscal period. Either 'afp' (the last date of the fiscal period) or 'pd' (publication date). If provided, the signal produces data as they were known at the given date relative to each fiscal period. The known time can be further modified by the relative_days argument. If not provided, the last available consensus estimate is returned.

  • relative_days (int) – Optionally, the number of days the known time should be moved relative to the date defined by the relative_to argument. A negative value signifies an earlier known time, while a positive value signifies a later known time. For example, relative_to='afp', relative_days=2 means that the known time is two days after the last date of the fiscal period. This argument requires the argument relative_to to be set. The default value is 0. If relative_to is set to 'pd', the value cannot be positive.

Examples:

Consensus interim sales for a company:

fs_consensus('sales')

Number of brokers for consensus interim sales:

fs_consensus('sales', 'count')

Consensus interim sales, as of quarter-end for each fiscal period:

fs_consensus('sales', relative_to='afp')

Consensus interim sales, 30 days before quarter-end for each fiscal period:

fs_consensus('sales', relative_to='afp', relative_days=-30)
fs_metric(parameter, /, freq='FQ/FS', alignment='afp', statistic='mean', unreported_periods=None, *, currency, currency_method, relative_to, relative_days)

Retrieves the combination of actuals (for historical periods) and consensus estimates (for future periods) as a single time series. This is a convenience method, and can be used, for example, when you want to calculate the year-over-year change for some FactSet time series, and you want to compare next quarter’s consensus estimates with the corresponding quarter in last year’s actuals.

Parameters:
  • parameter (str) – A FactSet estimates data item.

  • freq (str) – A fiscal frequency: FQ/FS, FQ, FS or FY.

  • alignment – An alignment: afp, fp, pd or rd.

  • statistic (str) – The type of the statistic to fetch. The options are 'mean', 'median', 'min' and 'max'. The default value is 'mean'.

  • unreported_periods (int) – Number of unreported periods to return. Default is None, which returns all unreported periods.

  • currency (str) – Optionally, a three-letter currency code (e.g. USD or EUR). If a currency is given, the values are converted to the given currency.

  • currency_method (str) – How the exchange rate is determined. Either 'mean' (use the average exchange rate over the fiscal period) or 'last' (use the exchange rate of the last day in the fiscal period). The default value is 'mean'. See interval-based currency conversion.

  • relative_to (str) – Optionally, the known time of the data for each fiscal period. Either 'afp' (the last date of the fiscal period) or 'pd' (publication date). If provided, the signal produces data as they were known at the given date relative to each fiscal period. The known time can be further modified by the relative_days argument. If not provided, the last available consensus estimate is returned.

  • relative_days (int) – Optionally, the number of days the known time should be moved relative to the date defined by the relative_to argument. A negative value signifies an earlier known time, while a positive value signifies a later known time. For example, relative_to='afp', relative_days=2 means that the known time is two days after the last date of the fiscal period. This argument requires the argument relative_to to be set. The default value is 0. If relative_to is set to 'pd', the value cannot be positive.

Example:

To calculate year-over-year change in interim sales, where historical periods are based on reported data, and future periods are based on consensus:

fs_metric('sales').relative_change(years=1)
fs_revisions(parameter, /, period, statistic='mean', *, calendarize: str, calendarize_from_freq: str)

Retrieve revisions of the consensus estimate for a given accounting period.

Parameters:
  • parameter (str) – A FactSet estimates data item.

  • period (str) – A single fiscal period or a rolling relative period.

  • statistic (str) – The type of the statistic to fetch. The options are 'mean', 'median', 'min', 'max', 'stdev' (standard deviation of broker estimates), 'count' (number of broker estimates), 'up' (number of broker estimates revised upwards) and 'down' (number of broker estimates revised downwards). The default value is 'mean'.

  • calendarize (str) – If period is a calendarized period, this specifies how the calendarization is performed. Either blended (default), last or nearest. See calendarization methods for details.

  • calendarize_from_freq (str) – If period is a calendarized period, the frequency of the signal which the calendarization is based on. Either FQ/FS, FQ, FS or FY. If period specifies a calendar year, the default is FQ/FS, if it specifies a quarter, the default is FQ, and if it specifies a semi-annual period, the default is FS.

Examples:

Consensus sales revisions for fiscal 1Q-2024:

fs_revisions('sales', '1Q-2024')

Consensus sales revisions for the current fiscal year (FY1):

fs_revisions('sales', 'FY1')

Consensus sales revisions for the current fiscal year on a rolling basis (GY1):

fs_revisions('sales', 'GY1')
fs_revisions_change(parameter, /, period, statistic='mean', *, freq: str = 'D', days: int, weeks: int, months: int, years: int, relative: bool = True)

Calculate the change in the FactSet revisions for a rolling fiscal period.

For each date d in the output, the value is calculated in the following way:

  1. Determine the correct fiscal period p relative to d. (If period is GY1, p is the fiscal year which contains d; if it is GY2 it is the next fiscal year, and so on.)

  2. Determine the interval the change is to be calculated over. The interval ends on d and its length is determined by the arguments days/weeks/months/years.

  3. Take the latest revision for p known at the start of the interval and the latest revision known at the end of the interval and calculate the change.

Exactly one of the arguments days, weeks, months and years must be specified.

Parameters:
  • parameter (str) – A FactSet estimates data item.

  • period (str) – A rolling fiscal period. The supported options are GYn, GQn, GSn and GQ/GSn.

  • statistic (str) – The type of the statistic to fetch. The options are 'mean', 'median', 'min', 'max', 'stdev' (standard deviation of broker estimates), 'count' (number of broker estimates), 'up' (number of broker estimates revised upwards) and 'down' (number of broker estimates revised downwards).

  • freq (str) – The frequency of the output. The output time series will have a data point on the last date of each period. The supported values are Y (annual), M (monthly), W (weekly, ending on Sunday), W-MON etc. (weekly, ending on the specified day) and D (daily).

  • days (int) – The number of days the change is calculated over.

  • weeks (int) – The number of weeks the change is calculated over.

  • months (int) – The number of months the change is calculated over.

  • years (int) – The number of years the change is calculated over.

  • relative (bool) – If True, the change is calculated as relative change (i.e. a/b-1). If False, the change is calculated as a difference (i.e. a-b).

Example:

Suppose a company has a standard fiscal calendar (ending 31 December), and you want to calculate, for each month, how much the sales revisions have changed over the past three months for the fiscal year containing the given month. You can then use the expression

fs_revisions_change('sales', period='GY1', freq='M', months=3)

In this case, the values are calculated as follows:

The value on

Calculation

31 Dec 2023

The revision for FY-2023 on 31 Dec 2023 relative to the revision on 30 Sep 2023

31 Jan 2024

The revision for FY-2024 on 31 Jan 2024 relative to the revision on 31 Oct 2023

Data items

These are the data items that can be used in any of the FactSet signals listed on this page. These are case-insensitive.

Basic items:

  • EPS – Earnings Per Share

  • EPS_C – Consolidated EPS

  • EPS_LTG – Long Term Growth

  • EPS_P – Standalone Earnings Per Share

  • SALES – Sales

  • SALES_C – Consolidated Sales

  • SALES_P – Standalone Sales

  • DPS – Declared Dividend Per Share

  • CFPS – Cash Flow Per Share

Advanced items:

  • AFFO – Adjusted Funds From Operations

  • APP_CAP_RATE – Applied Capital Rate

  • ARR – Annual Recurring Revenue

  • ASP – Average Selling Price

  • ASSETS – Total Assets

  • BFNG – Net Income Reported

  • BOOK_ROE – Book Return on Equity

  • BPS – Book Value Per Share

  • BPS_TANG – Tangible Book Value Per Share

  • BROAD_ARPU – Broadband ARPU

  • BUILD_IMPROV – Building and Improvement, Net

  • CAPEX – Capital Expenditure

  • CASH_NOI – Cash Net Operating Income

  • CASH_NP – Cash Net Income

  • CASH_NP_CONT – Cash Net Income from Continuing Operations

  • CASH_ST – Cash and Cash Equivalents

  • CCUR_GRTH – Constant Currency Revenue Growth

  • CF_FIN – Cash Flow From Financing

  • CF_INV – Cash Flow From Investing

  • CF_OP – Cash Flow From Operations

  • CFO_GAAP – Cash Flow from Operations - GAAP

  • COS – Cost of Sales

  • COS_DEBT – Cost of Debt (%)

  • CURRENT_ASSETS – Current Assets

  • CURRENT_LIABILITIES – Current Liabilities

  • DCF – Distributable Cash Flow

  • DCFLP – Distributable Cash Flow to Limited Partners

  • DCFPU – Distributable Cash Flow Per Unit

  • DCFPULP – Distributable Cash Flow Per Unit to Limited Partners

  • DEBT_LT – Long Term Debt

  • DEBT_ST – Short-Term Debt

  • DEFREVENUE – Total Deferred Revenue

  • DEFREVENUE_LT – Deferred Revenue Long Term

  • DEFREVENUE_ST – Deferred Revenue Short Term

  • DEPR_AMORT – Depreciation and Amortization

  • DEVELOP_PROP – Development Properties

  • DISCR_CF – Discretionary Cash Flow

  • EBIT – EBIT

  • EBIT_ADJ – EBIT Adjusted

  • EBIT_C – Consolidated EBIT

  • EBIT_P – Standalone EBIT

  • EBITA – EBITA

  • EBITDA – EBITDA

  • EBITDA_ADJ – EBITDA Adjusted

  • EBITDA_C – Consolidated EBITDA

  • EBITDA_P – Standalone EBITDA

  • EBITDA_REP – EBITDA Reported

  • EBITDAR – EBITDAR

  • EBITDAX – EBITDA including Exploration Expense

  • EBITR – EBIT Reported

  • EPS_EX_XORD – Earnings Per Share Excluding Exceptionals

  • EPS_GAAP – Reported Earnings Per Share

  • EPS_NONGAAP – Earnings Per Share-Non-GAAP

  • EPSAD – Diluted Adjusted EPS

  • EPSRD – Diluted Reported EPS

  • EQ_RATIO – Equity Ratio (%)

  • EQUITY_INV – Total Equity Securities Investment

  • EUR_JPY – Forex - EUR per JPY

  • FCF – Free Cash Flow

  • FCFPS – Free Cash Flow Per Share

  • FFO – Funds From Operations

  • FFO_DEBT – FFO_DEBT (%)

  • FIXED_INCOME_INV – Total Fixed Income Securities Investment

  • G_A_EXP – General and Administrative Expense

  • GMV – Gross Merchandise Volume

  • GPW_LIFE – Gross Premiums Written - Life

  • GPW_PC – Gross Premiums Written - P&C

  • GW_TOT – Total Goodwill

  • HEPSB – Headline Basic EPS

  • HEPSD – Headline Diluted EPS

  • INC_GROSS – Gross Income

  • INS_EQ_POL – Surrenders

  • INS_RSRV – Insurance Reserves

  • INT_COVER_RATIO – Interest Coverage Ratio (X)

  • INT_EXP – Interest Expense

  • INTANG – Intangible Assets

  • INVENTORIES – Inventories

  • INVEST_ASSETS – Invested Assets

  • INVEST_INC_LIFE – Net Investment Income - Life

  • INVEST_INC_PC – Net Investment Income - P&C

  • LAND – Land

  • LAND_HFD – Land Held for Development

  • LCUR_GRTH – Local Currency Revenue Growth

  • MAINT_CAPEX – Maintenance CAPEX

  • MINTEREST – Minority Interest

  • MTGP – Annual Avgerage Target Price

  • NBEQUITIES – Number of Equities

  • NDT – Net Debt

  • NET – Net Profit

  • NET_C – Consolidated Net Income

  • NET_P – Standalone Net Income

  • NET_SALES – Net Sales

  • NETBG – Net Profit Adjusted

  • NPW_PC – Net Premiums Written - P&C

  • OP_RATIO – Operating Ratio

  • ORGANICGROWTH – Organic Growth

  • PAY_ACCT – Accounts Payable

  • PENS_BENF – Pension & Benefits

  • PRIOR_YR_DEV – Prior Year Development

  • PTI – Pre-Tax Profit

  • PTI_C – Consolidated Pretax Income

  • PTIAG – Pre-Tax Profit Reported

  • PTP_P – Standalone Pretax Income

  • PTPA – Pre-Tax Income Adjusted

  • RD_EXP – Research and Development

  • RECEIV_NET – Accounts Receivable

  • REV_TOT – Total Revenues

  • S_M_EXP – Selling and Marketing Expense

  • SAME_STORE_NOI – Same Store NOI

  • SGA – Selling, General and Administrative Expense

  • SH_EQUITY – Shareholder’s Equity

  • SHS_REPURCH – Share Repurchase

  • SOE – Stock Option Expense

  • SS_NOI – Same Store Net Operating Income

  • TAX_EXPENSE – Tax Expense

  • TOTAL_CAPITAL – Total Capital

  • TOTAL_DEBT – Total Debt

  • TOTAL_RPO – Total RPO

  • TPV – Total Payment Volume

  • UFCF – Unlevered Free Cash Flow

  • UNITS – Units (millions)

  • USD_JPY – Forex - USD per JPY

  • UW_EXP – Underwriting Expense

  • UW_INCOME_LIFE – Underwriting Income - Life

  • UW_INCOME_PC – Underwriting Income - P&C

  • WIRELES_ARPU – Wireless ARPU

  • WKCAP – Working Capital

Industry items:

  • ACCESS_LINES – Access Lines

  • ACQUI_NOI – Acquisition NOI

  • ARPU – Average Revenue Per User (ARPU)

  • ASSETS_NONPERF – Non-Performing Assets

  • ASSETS_RISK_WGHT – Risk Weighted Assets (RWA)

  • ASV – Annual Subscription Value (ASV)

  • AUC_EOP – Assets Under Custody End of Period

  • AUM – Assets Under Management (AUM)

  • AUM_AVG – Assets Under Management Average

  • AVAILABLESEATKM – Available seat km (ASK)

  • AVG_EARN_ASSETS – Average Earning Assets

  • BACKLOG_AVG_PRICE – Backlog Average Price

  • BACKLOG_UNITS – Backlog Units

  • BACKLOG_VALUE – Backlog Value

  • BAD_DEBT_PROV – Provision for Bad Debt

  • BENEFIT_RATIO – Benefit Ratio (%)

  • BOLI – Bank Owned Life Insurance

  • BUSINESS_ARPU – Business Services ARPU

  • BVPS_EXCL_AOCI – Book Value Per Share Excl AOCI

  • BVPS_INCL_AOCI – Book Value Per Share Incl AOCI

  • CANCELRATE – Cancellation Rate

  • CAP_RATIO_TIER1 – Tier 1 Capital Ratio

  • CAP_RATIO_TOT – Total Capital Ratio (%)

  • CARD_INCOME – Card Income

  • CASH_CONV – Cash Conversion (FCF/NetProfit) (%)

  • CASH_COST – Cash Cost

  • CAT_LOSSES – Cat Losses

  • CAT_LOSSES_RATIO – Cat Losses (%)

  • CHEM_DOM – Chemicals Income - Domestic

  • CHEM_INTL – Chemicals Income - International

  • CHEM_NETINC – Chemicals Post Taxes

  • CHEM_NETINC_DOM – Chemicals Post Taxes - Dom

  • CHEM_NETINC_INTL – Chemicals Post Taxes - Intl

  • CHEM_OPINC – Chemicals Income

  • CHG_CASH_CF – Net Change in Cash

  • CHURN – Churn

  • CLAIMS_EXP – Claims Expense

  • COMB_RATIO_UND – Underlying Combined Ratio

  • COMBINED_RATIO – Combined Ratio

  • COMCAP_RATIO_TIER1 – Tier 1 Common Capital Ratio

  • COM_EQUITY_TIER1 – Common Equity Tier 1 (CET1)

  • CONTR_PROF – Contribution Profit

  • CORE_FFO – Core Funds from Operations

  • COST_INCOME – Cost to Income Ratio

  • COST_PER_GRAM – Marijuana

  • CPGA – Cost per Gross Add

  • CURRENT_RPO – Current RPO

  • CURRENT_RPO_BOOKINGS – Current RPO Bookings

  • CUS_REL_ARPU – Customer Relationship ARPU

  • DACF – Debt-Adjusted Cash Flow (DACF)

  • DAU – Daily Active Users

  • DEFACQUI_COST – Deferred Acquisition Cost

  • DELIV_PRICE – Deliveries Average Price

  • DELIVERIES_UNITS – Deliveries Units

  • DEPS – Deposits

  • DEPS_AVG – Average Deposits

  • DEV_NOI – Development Net Operating Income

  • DFD_TAX_CR – Deferred Income Taxes - Liabilities

  • DFD_TAX_DB – Deferred Income Taxes - Assets

  • DFD_TAX_XITC_CF – Deferred Income Taxes - Cash Flow

  • DISPO_NOI – Disposition NOI

  • E_P_DOM – Upstream Income - Domestic

  • E_P_INTL – Upstream Income - International

  • E_P_NETINC – Upstream Post Taxes

  • E_P_NETINC_DOM – Upstream Post Taxes - Dom

  • E_P_NETINC_INTL – Upstream Income International, Post Taxes

  • E_P_OPINC – Upstream Income

  • EMBEDDED_VALUE – Embedded Value

  • EQUIP_EXP – Occupancy & Equipment Expense

  • EXPENSE_RATIO – Expense Ratio

  • EXPL_EXP – Exploration Expenses

  • FDIC – FDIC Insurance expense

  • FEE_AUM – Fee AUM - EOP

  • FEES – Fees

  • FFO_REP – Reported Funds from Operations

  • FIN_SERVICES – Financial Services

  • FOREX_OTHERTRAD – Foreign Exchange and Other Trading Revenue

  • FRE – Fee Related Earnings

  • FUEL – Fuel Costs

  • FUEL_PURCH_POWER – Fuel, Purchased Power Costs

  • GROSS_ADDS – Gross Adds

  • GROSS_PREM_WRITTEN – Gross Premiums Written

  • HIS_ARPU – High Speed Internet ARPU

  • HOME_SALES – Home Sales

  • IMP_CAP_RATE – Implied Cap Rate

  • INC_FEES – Income from Fees & Commissions

  • INC_TRADING – Trading Income

  • INS_INC – Insurance Commissions

  • INT_INC – Net Interest Income

  • INT_INC_MARGIN – Net Interest Margin

  • INV_BANK_TRUST – Investment Banking & Trust

  • INV_MNGT_FEES – Investment Management Fees

  • INV_SERV_FEES – Investment Services Fees

  • INVEST_INC – Net Investment Income

  • INVEST_PROP – Investment Properties

  • KG_CANNABIS_SOLD – Marijuana

  • LAND_SALES – Land Sales

  • LEND_DEPS_FEE – Lending & Deposit Related Fees

  • LEV_RATIO_TIER1 – Tier 1 Leverage Ratio (%)

  • LIABS_SHLDRS_EQ – Total Liabilities and Equity

  • LIFE_INS_CLAIMS – Life Insurance Claims

  • LOADFACTOR – Load Factor

  • LOAN_LOSS_RSRV – Loan Loss Reserve

  • LOAN_NET – Net Loans

  • LOAN_NET_AVG – Average Net Loans

  • LOAN_NONPERF – Non-Performing Loans (NPL)

  • LOANOREO_NONPERF – NPAs/Loan+OREO (%)

  • LOAN_PROV – Provisions for Loans

  • LOSS_RATIO – Loss Ratio

  • LOSS_RATIO_UND – Underlying Loss Ratio (%)

  • LT_FLOWS – Long Term Flows

  • LTV – Loan to Value

  • M_REV_USER – Monthly Revenue Per User

  • MAU – Monthly Active Users

  • MCR – Medical Cost Ratio

  • MORTGAGE_BANKING – Mortgage Banking

  • MOU – Minutes of Use

  • MUU – Monthly Unique Users

  • NAVPS – Net Asset Value Per Share (NAVPS)

  • NET_ADDS – Net Adds

  • NET_CHARGE_OFFS – Net Charge-Offs

  • NET_INVEST_YIELD – Net Investment Yield (%)

  • NETFLOWS – Net Flows

  • NEW_ORD_PRICE – New Orders Average Price

  • NEW_ORDERS_UNITS – New Orders Units

  • NEW_ORDERS_VALUE – New Orders Value

  • NON_COMP_EXP – Non-Compensation Expense

  • NON_CURRENT_RPO – Non Current RPO

  • NON_INT_INC – Non-Interest Income

  • NPE_LIFE – Net Premiums Earned - Life

  • NPE_PC – Net Premiums Earned - P&C

  • NPW_LIFE – Net Premiums Written - Life

  • OCCUPY_EXP – Occupancy Expense

  • OCCUPY_RATE_DOM – Occupancy Rate - Domestic

  • OCCUPY_RATE_INTL – Occupancy Rate - International

  • OCCUPY_RATE_TOT – Occupancy Rate - Total

  • OPER_EXP – Operating Expense

  • OPEX_ASK – Operating Expenses per ASK

  • OPEX_ASK_XFUEL – Operating Expenses per ASK excluding fuel costs

  • OPEX_UNIT – OPEX per Unit

  • OREO_EXP – Other Real Estate Owned Expense

  • OTHER_OPEX – Other Operating Expenses

  • PAIDNADDS – Paid Net Adds

  • PASS_REV_ASK – Passenger revenue per ASK

  • PASS_REV_RPK – Passenger revenue per RPK

  • PFD_STK – Preferred Equity

  • POSTPAID_ARPU – Wireless Postpaid ARPU

  • POSTPAID_PH_ARPU – Postpaid Phone ARPU

  • PPE_EXP – Equipment Expense

  • PREM_EARN – Net Premiums Earned

  • PREM_WRITTEN – Net Premiums Written

  • PREPAID_ARPU – Wireless Prepaid ARPU

  • PRICE_BRENT – Brent Price

  • PRICE_CA_LIGHT – Canadian Light Oil Price

  • PRICE_DUBAI_OIL – Dubai Crude Price

  • PRICE_ED_OIL – Edmonton Par Oil Price

  • PRICE_SCO – Synthetic Crude Price

  • PRICE_URALS – Urals Crude Price

  • PRICE_WCS – Western Canadian Select Crude Price

  • PRICE_WTI – West Texas Intermediate Price

  • PROD_ALUM – Total Production Aluminium (t)

  • PROD_ALUN – Total Production Alumina (t)

  • PROD_BAUX – Total Production Bauxite (t)

  • PROD_BORATES – Total Production Borates (t)

  • PROD_CATH – Total Production Copper Cathode (t)

  • PROD_CHROMEORE – Total Production Chrome Ore (t)

  • PROD_COAL – Total Production Coal (t)

  • PROD_COBALT – Total Production Cobalt (t)

  • PROD_COBCON – Total Production Cobalt Concentrate (t)

  • PROD_COKE – Total Production Coke (t)

  • PROD_COPP – Total Production Copper (t)

  • PROD_COPPCON – Total Production Copper Concentrate (t)

  • PROD_COPPREFINED – Total Production Copper Refined (t)

  • PROD_COPPSMELT – Total Production Copper Smelting (t)

  • PROD_COSTS – Production Costs

  • PROD_CRUDESTEEL – Total Production Crude Steel (t)

  • PROD_DAY_GAS – Production per day - Natural Gas

  • PROD_DAY_GAS_NGL – Production Per Day - Natural Gas & NGLs

  • PROD_DAY_NGL_ONLY – Production Per Day - NGLs

  • PROD_DAY_OIL – Production per day - Oil & NGLs

  • PROD_DAY_OIL_ONLY – Production Per Day - Oil

  • PROD_DIAM – Total Production Diamonds (ct)

  • PROD_FERROCHROME – Total Production Ferro Chrome (t)

  • PROD_GAS – Total Production - Natural Gas (mmcf)

  • PROD_GOLD – Total Production Gold (oz)

  • PROD_GOLDCON – Total Production Gold Concentrate (oz)

  • PROD_GOLDSMELT – Total Production Gold Smelting (t)

  • PROD_HARDCOAL – Total Production Hard Coking Coal (t)

  • PROD_ILMENITE – Total Production Ilmenite (t)

  • PROD_IRON – Total Production Iron Ore (t)

  • PROD_IRONORECON – Total Production Iron Ore Concentrate (t)

  • PROD_LEAD – Total Production Lead (t)

  • PROD_LEADCON – Total Production Lead Concentrate (t)

  • PROD_LEADSMELT – Total Production Lead Smelting (t)

  • PROD_MANGALLOY – Total Production Manganese Alloy (t)

  • PROD_MANGORE – Total Production Manganese Ore (t)

  • PROD_MELTSHOP – Total Production Melt Shop (t)

  • PROD_MET – Total Production Metallurgical Coal (t)

  • PROD_MOLY – Total Production Molybdenum (t)

  • PROD_NGL - Total Production - Natural Gas Liquids (mmbbl)

  • PROD_NICK – Total Production Nickel (t)

  • PROD_NICKCON – Total Production Nickel Concentrate (t)

  • PROD_OIL – Total Production - OIL (mmbbl)

  • PROD_OIL_NGL – Total Production - OIL & NGL (mmbbl)

  • PROD_OIL_SANDS – Total Production - OIL Sands

  • PROD_PALLA – Total Production Palladium (oz)

  • PROD_PELLETS – Total Production Pellets (t)

  • PROD_PLAT – Total Production Platinum (oz)

  • PROD_RAWCOAL – Total Production Raw Coal (mt)

  • PROD_RHOD – Total Production Rhodium (oz)

  • PROD_RUTILE – Total Production Rutile (t)

  • PROD_SEMISOFT – Total Production Semi Soft Coking Coal (t)

  • PROD_SILV – Total Production Silver (oz)

  • PROD_SILVCON – Total Production Silver Concentrate (oz)

  • PROD_SILVSMELT – Total Production Silver Smelting (t)

  • PROD_STEEL – Total Production Steel (t)

  • PROD_SULPHACID – Total Production Sulphuric Acid (t)

  • PROD_SYNTHRUTILE – Total Production Synthetic Rutile (t)

  • PROD_THERCOAL – Total Production Thermal Coal (t)

  • PROD_THERCOALEPT – Total Production Thermal Coal Export (t)

  • PROD_TIO2 – Total Production Titanium Dioxide (t)

  • PROD_TITAN – Total Production Titanium (t)

  • PROD_URAN – Total Production Uranium (t)

  • PROD_ZINC – Total Production Zinc (t)

  • PROD_ZINCCON – Total Production Zinc Concentrate (t)

  • PROD_ZINCREFINED – Total Production Zinc Refined (t)

  • PROD_ZINCSMELT – Total Production Zinc Smelting (t)

  • PROD_ZIRCON – Total Production Zircon (t)

  • PRODPERDAY – Production per day

  • PROF_FEES_EXP – Professional Fees

  • PURCH_POWER – Purchased Power

  • R_M_DOM – Downstream Income - Domestic

  • R_M_INTL – Downstream Income - International

  • R_M_NETINC – Downstream Income Post Taxes

  • R_M_NETINC_DOM – Downstream Income Post Taxes - Dom

  • R_M_NETINC_INTL – Downstream Post Taxes - Intl

  • R_M_OPINC – Downstream Income

  • RE_SS_OPER_EXP – Same Store Expense

  • RE_SS_REV – Same Store Revenue

  • REAL_PRICE – Realized Price

  • REAL_PRICE_BH – Realized Price - Before Hedges

  • REAL_PRICE_GAS – Realized Price - Natural Gas

  • REAL_PRICE_M – Realized Price - Mining

  • REAL_PRICE_OG – Realized Price - Oil and Gas

  • REAL_PRICE_OIL – Realized Price - Oil & NGLs

  • REALP_GAS_BH – Realized Price - Natural Gas Before Hedges

  • REALP_GAS_NGL – Realized Price - Gas & NGLs

  • REALP_NGL – Realized Price - Natural Gas Liquids

  • REALP_NGL_BH – Realized Price - NGLs Before Hedges

  • REALP_OIL_BH – Realized Price - Oil Before Hedges

  • REALP_OIL_NGL – Realized Price - Oil & NGLs

  • REALP_OIL_NGL_BH – Realized Price - Oil & NGLs Before Hedges

  • RESIDENT_ARPU – Residential Customer ARPU

  • RESI_DATA_ARPU – Residential Data ARPU

  • RESI_VIDEO_ARPU – Residential Video ARPU

  • RESI_VOICE_ARPU – Residential Voice ARPU

  • REST_MARG – Restaurant Margin (%)

  • RETAIL_ARPU – Retail Wireless ARPU

  • REV_PASSENGER – Revenue passenger

  • REV_PER_ROOM_DOM – Revenue per Available Room (RevPar) - Domestic

  • REV_PER_ROOM_INTL – Revenue per Available Room (RevPar) - International

  • REV_PER_ROOM_TOT – Revenue per Available Room (RevPar) - Total

  • REV_UNIT – Revenue Per Unit

  • REVPASSENGERKM – Revenue passenger km (RPKs)

  • RISK_BASED_CAP – Total Risk-based Capital

  • RNAVPS – Net Asset Value Per Share - Next Twelve Months (NAV-NTM)

  • ROOM_RATE_DAILY_DOM – Daily Room Rate (ADR) - Domestic

  • ROOM_RATE_DAILY_INTL – Daily Room Rate (ADR) - International

  • ROOM_RATE_DAILY_TOT – Daily Room Rate (ADR) - Total

  • ROTE – Return on Tangible Equity (%)

  • RSRV_BUILD – Reserve Build

  • RSV_1P – 1P Proved Reserves

  • RSV_2P – 2P Proved and Probable Reserves

  • RSV_3P – 3P Proved Probable and Possible Reserves

  • SAC – Subscriber Acquisition Cost

  • SAL_BENEFITS – Salaries and Benefits

  • SALES_RSF – Net sales per square foot

  • SAMESTORESALES – Same Stores Sales - Total

  • SAMESTORESALESM – Same Store Sales Monthly (%)

  • SELL_SP – Selling Space - Total

  • SELL_SP_D – Selling Space - Domestic

  • SELL_SP_I – Selling Space - International

  • SERVICE_CHRG – Service Charges on Deposits

  • SOFT_PROC_FEES – Software and Processing Fees

  • SS_ADJ_ADM – Same Store Adjusted Admissions

  • SS_ADM – Same Store Admissions

  • SS_EXP_GR – Same Store Expense growth (%)

  • SS_REV_PER_ADJ_ADM – Same Store Revenue per Adjusted Admissions

  • SSS_D – Same Stores Sales - Domestic

  • SSS_I – Same Stores Sales - International

  • ST_CL – Number of Stores Closed - Total

  • ST_CL_D – Number of Stores Closed - Domestic

  • ST_CL_I – Number of Stores Closed - International

  • ST_END – Number of Stores at Period End - Total

  • ST_END_D – Number of Stores at Period End - Domestic

  • ST_END_I – Number of Stores at Period End - International

  • ST_OPN_D – Number of Stores Opened - Domestic

  • ST_OPN_I – Number of Stores Opened - International

  • ST_RLOC – Number of Stores Relocated - Total

  • ST_RLOC_D – Number of Stores Relocated - Domestic

  • ST_RLOC_I – Number of Stores Relocated - International

  • STOREN_OPENED – Number of Stores Opened - Total

  • STUDENTENROLL_NEW – New Student Enrollment

  • STUDENTENROLL_TOT – Total Student Enrollment

  • SUBSCRIBERS_NB – Number of Subscribers

  • SUBSVIDEO_ARPU – Subscription Video ARPU

  • SUPPLIES – Supplies Cost

  • TAM – Total Addressable Market

  • TAXES_NON_INC – Taxes Other Than Income

  • TCE_TA – Tangible Common Equity/Tangible Assets (%)

  • TEXAS_RATIO – Texas Ratio (%)

  • TIER1_CAP – Tier 1 Capital

  • TOT_CAPACITY_MW – Total Capacity (Mw)

  • TOT_OREO – Total Other Real Estate Owned

  • TOT_REV_ASK – Total Revenue per ASK

  • TOTAL_PROD – Total Production

  • TOTAL_PROD_M – Total Production - Mining

  • TOTAL_PROD_OG – Total Production - Oil and Gas

  • TOTAL_RPO_BOOKINGS – Total RPO Bookings

  • TRANS_PROC_SERV – Transaction Processing Services

  • TRUST_INC – Trust and Asset Management Income

  • UW_INCOME – Underwriting Income

  • VIDEOADVERT_ARPU – Video Advertising ARPU

  • VIDO_ARPU – Video ARPU

  • VOICE_ARPU – Voice ARPU

  • VOL_GRTH – Volume Growth

  • WHOLESAL_ARPU – Wholesale Wireless ARPU