class MagicFormulaInvesting::CompanyQuote
Attributes
market_cap[RW]
most_recent_quarter_data[RW]
name[RW]
price_from[RW]
ticker[RW]
Public Instance Methods
overview_link()
click to toggle source
# File lib/magicformulainvesting/company_quote.rb, line 9 def overview_link "https://finance.yahoo.com/quote/#{ticker}" end
table_row()
click to toggle source
# File lib/magicformulainvesting/company_quote.rb, line 13 def table_row [name, ticker, market_cap, price_from, most_recent_quarter_data, overview_link] end