Method: FinModeling::ReformulatedBalanceSheet#common_shareholders_equity
- Defined in:
- lib/finmodeling/reformulated_balance_sheet.rb
#common_shareholders_equity ⇒ Object
38 39 40 41 42 43 44 45 |
# File 'lib/finmodeling/reformulated_balance_sheet.rb', line 38 def common_shareholders_equity cs = FinModeling::CalculationSummary.new cs.title = "Common Shareholders' Equity" cs.rows = [ CalculationRow.new( :key => "NOA", :vals => [ .total ] ), CalculationRow.new( :key => "NFA", :vals => [ net_financial_assets.total ] ), CalculationRow.new( :key => "MI", :vals => [ -@minority_interest.total ] ) ] return cs end |