yahoo-finance
yahoo-finance copied to clipboard
[DEPRECATED] A simple wrapper for yahoo finance quotes end-point.
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.10.10 to 1.13.9. Release notes Sourced from nokogiri's releases. 1.13.9 / 2022-10-18 Security [CRuby] Vendored libxml2 is updated to address CVE-2022-2309, CVE-2022-40304, and CVE-2022-40303. See GHSA-2qc6-mcvw-92cw for...
# Steps to reproduce 1. Add `gem 'yahoo-finance'` to Gemfile 2. `bundle install` 3. `rails c` 4. execute this... ```rb yahoo_client = YahooFinance::Client.new data = yahoo_client.quotes(["BVSP", "NATU3.SA", "USDJPY=X"], [:ask, :bid,...
Updates the requirements on [rake](https://github.com/ruby/rake) to permit the latest version. Changelog *Sourced from [rake's changelog](https://github.com/ruby/rake/blob/master/History.rdoc).* > === 12.3.3 > > ==== Bug fixes > > * Use the application's name...
Bumps [json](https://github.com/flori/json) from 1.8.2 to 2.3.0. Changelog Sourced from json's changelog. 2019-12-11 (2.3.0) Fix default of create_additions to always be false for JSON(user_input) and JSON.parse(user_input, nil). Note that JSON.load remains...
Yahoo API version 7 is superior to the current implementation. The new API has more accurate data. The data in the old API does not appear to updated any more...
This is the first cut getting this gem working again. Changes * Code extracted into modules Quotes, Historical, Splits, Symbols * Test/Unit moved over to Minitest * Tests extracted out...
Is anyone experiencing the following error?: Sorry, Unable to process request at this time -- error 999. Links to track this issue: - https://forums.yahoo.net/t5/Yahoo-Finance-help/Download-Currency-Rates-Error-999/td-p/387275 - https://www.elitetrader.com/et/threads/looks-like-yahoo-download-api-is-now-dead-11-1-2017.314661/
Historical quotes for price will be fixed in https://github.com/herval/yahoo-finance/pull/44. However, historical quotes for dividends still needs a patch.
relates to #52 Here is a quick fix for the quote function. Apparently, Yahoo changed the layout of their historical data page... After this fix, I can get historical prices...
On master branch, I tried ``` data = yahoo_client.historical_quotes("AAPL") # entire historical data data = yahoo_client.historical_quotes("AAPL", { period: :monthly }) ``` There was no data returned. After you add `start_date`...