Get stock information from Yahoo Finance
gem install ystock
Add it to your Gemfile
gem ‘ystock’
This gem uses Yahoo Finance (yahoo.finance.com) to get stock quotes. Remember the delay is up to 20 mins.
stock = ‘aapl’ Ystock.get_stock(stock) # Returns an array #### # :symbol # :price # :change # :volume Get multiple stock information at once.
Ystock.find([‘aapl’, ‘goog’, ‘lcre’])
Greg Winn