Module: MarkIt

Defined in:
lib/markit.rb

Defined Under Namespace

Classes: Quote

Constant Summary collapse

METHODS =

List of methods available for calling.

{
  :name => "Name", #name of the company
  :last_price => "LastPrice", #last traded price
  :change => "Change", #dollar amount change in the price from open to last price today
  :change_percent => "ChangePercent", #percent amount change in the price from open to last price today
  :market_cap => "MarketCap", #market capitalization of the company
  :volume => "Volume", #number of shares traded today
  :change_percent_ytd => "ChangePercentYTD", #percent amount change in the price in the year to date
  :high => "High", #highest price in the current trading session
  :low => "Low", #lowest price in the current trading session
  :open => "Open" #price the stock started at in the current trading session
}