c_market_cap#
- c_market_cap(m_close_split_adjusted, fis_weighted_average_diluted_shares_outstanding)[source]
Calculate the market capitalization using unadjusted close prices and weighted average diluted shares outstanding.
- Parameters:
m_close_split_adjusted (DataColumn) – The adjusted closing prices.
fis_weighted_average_diluted_shares_outstanding (DataColumn) – The weighted average of the diluted shares outstanding.
- Returns:
The market capitalization.
- Return type:
Notes
Market cap is calculated as:
\[\mathrm{Market\ Cap} = \mathrm{Close} \times \mathrm{Weighted\ Average\ Diluted\ Shares\ Outstanding}\]In Excel, assuming close in column A and shares in column B:
In cell C2, enter:
=A2 * B2
Drag the formula down to apply to subsequent rows.