yafin 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "rspec", "~> 2.11.0"
10
+ gem "rdoc", "~> 3.12"
11
+ gem "bundler"
12
+ gem "jeweler", "~> 1.8.4"
13
+ gem "simplecov", ">= 0"
14
+ end
@@ -0,0 +1,37 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.3)
5
+ git (1.2.5)
6
+ jeweler (1.8.4)
7
+ bundler (~> 1.0)
8
+ git (>= 1.2.5)
9
+ rake
10
+ rdoc
11
+ json (1.7.4)
12
+ multi_json (1.3.6)
13
+ rake (0.9.2.2)
14
+ rdoc (3.12)
15
+ json (~> 1.4)
16
+ rspec (2.11.0)
17
+ rspec-core (~> 2.11.0)
18
+ rspec-expectations (~> 2.11.0)
19
+ rspec-mocks (~> 2.11.0)
20
+ rspec-core (2.11.1)
21
+ rspec-expectations (2.11.2)
22
+ diff-lcs (~> 1.1.3)
23
+ rspec-mocks (2.11.1)
24
+ simplecov (0.6.4)
25
+ multi_json (~> 1.0)
26
+ simplecov-html (~> 0.5.3)
27
+ simplecov-html (0.5.3)
28
+
29
+ PLATFORMS
30
+ ruby
31
+
32
+ DEPENDENCIES
33
+ bundler
34
+ jeweler (~> 1.8.4)
35
+ rdoc (~> 3.12)
36
+ rspec (~> 2.11.0)
37
+ simplecov
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Patrik Björklund
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,37 @@
1
+ yafin
2
+ =====
3
+
4
+ Yafin is a gem to pull quotes from Yahoo finance.
5
+
6
+ Usage
7
+ -----
8
+
9
+ ```ruby
10
+ y = Yafin.new
11
+
12
+ quotes = y.get_latest_quotes(["goog", "aapl"])
13
+
14
+ historical_quotes = y.get_historical_quotes("goog", "2011", "2", "1", "2011", "3", "1")
15
+ ```
16
+
17
+ Syntax is symbol, start_year=2000, start_month=1, start_day=1, to_year=2012, to_month=1, to_day=1
18
+
19
+ Quotes is an array of Yafin::Quote and historical_quotes is an array of Yafin::Historical_quotes
20
+
21
+ Contributing to yafin
22
+ ---------------------
23
+
24
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
25
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
26
+ * Fork the project.
27
+ * Start a feature/bugfix branch.
28
+ * Commit and push until you are happy with your contribution.
29
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
30
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
31
+
32
+ Copyright
33
+ ---------
34
+
35
+ Copyright (c) 2012 Patrik Björklund. See LICENSE.txt for
36
+ further details.
37
+
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "yafin"
18
+ gem.homepage = "http://github.com/pbjorklund/yafin"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Pulls current and historical data from Yahoo Finance}
21
+ gem.description = %Q{Pulls current and historical data from Yahoo Finance. Requires net/http and csv}
22
+ gem.email = "p.bjorklund@gmail.com"
23
+ gem.authors = ["Patrik Björklund"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rdoc/task'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "yafin #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
@@ -0,0 +1,48 @@
1
+ require 'csv'
2
+ require 'net/http'
3
+
4
+ class Yafin
5
+ def get_latest_quotes symbols
6
+ # Enter symbols to fetch at f=
7
+ # s = symbol
8
+ # n = name
9
+ # l1 = last trade (price only)
10
+ # c1 = Change
11
+ # p2 = Change in percent
12
+ # x = Stock exchange
13
+ #
14
+ # Full list at http://www.gummy-stuff.org/Yahoo-data.htm
15
+
16
+ ####### GOOG RESPONSE ##########################################
17
+ # s n l1 c1 p2 x
18
+ # ["GOOG", "Google Inc.", 585.245, -0.735, "-0.13%", "NasdaqNM"]
19
+ ####### GOOG RESPONSE ##########################################
20
+
21
+ sym = symbols.join("+")
22
+
23
+ resp = Net::HTTP.get_response(URI.parse("http://download.finance.yahoo.com/d/quotes.csv?s=#{sym}&f=snl1c1p2x&e=.csv"))
24
+ quotes = resp.body.split(/\r\n/)
25
+
26
+ quotes.inject([]) do |sum, q|
27
+ sum << Quote.new(CSV.parse(q).flatten)
28
+ end
29
+ end
30
+
31
+ def get_historical_quotes symbol, start_year=2000, start_month=1, start_day=1, to_year=2012, to_month=1, to_day=1
32
+
33
+ # http://ichart.yahoo.com/table.csv?s=GOOG&a=0&b=1&c=2000&d=0&e=31&f=2010
34
+ # "Date,Open,High,Low,Close,Volume,Adj Close"
35
+
36
+ resp = Net::HTTP.get_response(URI.parse("http://ichart.yahoo.com/table.csv?s=#{symbol}&a=#{start_month.to_i - 1}&b=#{start_day}&c=#{start_year}&d=#{to_month.to_i - 1}&e=#{to_day}&f=#{to_year}"))
37
+
38
+ quotes = resp.body.split(/\n/)
39
+
40
+ quotes.delete_at 0 #Strip headings from response
41
+
42
+ sum = quotes.inject([]) { |sum, q| sum << HistoricalQuote.new(CSV.parse(q).flatten, symbol) }
43
+
44
+ end
45
+ end
46
+
47
+ require 'yafin/quote'
48
+ require 'yafin/historical_quote'
@@ -0,0 +1,14 @@
1
+ class Yafin::HistoricalQuote
2
+ attr_accessor :symbol, :date, :open, :high, :low, :close, :volume, :adj_close
3
+
4
+ def initialize args, symbol
5
+ self.date = args[0]
6
+ self.open = args[1]
7
+ self.high = args[2]
8
+ self.low = args[3]
9
+ self.close = args[4]
10
+ self.volume = args[5]
11
+ self.adj_close = args[6]
12
+ self.symbol = symbol
13
+ end
14
+ end
@@ -0,0 +1,17 @@
1
+ class Yafin::Quote
2
+ attr_accessor :symbol, :name, :last_trade, :change, :change_percent, :exchange
3
+
4
+ def initialize args=[]
5
+ self.symbol = args[0]
6
+ self.name = args[1]
7
+ self.last_trade = args[2]
8
+ self.change = args[3]
9
+ self.change_percent = args[4]
10
+ self.exchange = args[5]
11
+ end
12
+
13
+ def to_s
14
+ "Symbol: #{symbol} Name: #{name} Last trade: #{last_trade} Change: #{change} Change %: #{change_percent} Exchange: #{exchange}"
15
+ end
16
+ end
17
+
@@ -0,0 +1,12 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'yafin'
5
+
6
+ # Requires supporting files with custom matchers and macros, etc,
7
+ # in ./support/ and its subdirectories.
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+ RSpec.configure do |config|
11
+
12
+ end
@@ -0,0 +1,34 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe Yafin do
4
+ describe "#get_latest_quotes" do
5
+ it "responds to #get_latest_quotes" do
6
+ subject.should respond_to(:get_latest_quotes)
7
+ end
8
+
9
+ it "should return quotes for stock symbol" do
10
+ goog_quote = subject.get_latest_quotes(["goog"])
11
+ goog_quote.first.symbol.should == "GOOG"
12
+ end
13
+
14
+ it "should return quotes for stock symbols" do
15
+ quotes = subject.get_latest_quotes(["goog", "aapl"])
16
+ quotes.first.symbol.should == "GOOG"
17
+ quotes.last.symbol.should == "AAPL"
18
+ end
19
+ end
20
+
21
+ describe "#get_historical_quotes" do
22
+ it "responds to #get_historical_quotes" do
23
+ subject.should respond_to(:get_historical_quotes)
24
+ end
25
+
26
+ before(:each) do
27
+ @quotes = subject.get_historical_quotes("goog", "2011", "2", "1", "2011", "3", "1")
28
+ end
29
+
30
+ it "gets historical quotes for a single stock given a timespan" do
31
+ @quotes.count.should == 20
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,65 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "yafin"
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Patrik Bj\u{f6}rklund"]
12
+ s.date = "2012-08-04"
13
+ s.description = "Pulls current and historical data from Yahoo Finance. Requires net/http and csv"
14
+ s.email = "p.bjorklund@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".rspec",
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "LICENSE.txt",
25
+ "README.md",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "lib/yafin.rb",
29
+ "lib/yafin/historical_quote.rb",
30
+ "lib/yafin/quote.rb",
31
+ "spec/spec_helper.rb",
32
+ "spec/yafin_spec.rb",
33
+ "yafin.gemspec"
34
+ ]
35
+ s.homepage = "http://github.com/pbjorklund/yafin"
36
+ s.licenses = ["MIT"]
37
+ s.require_paths = ["lib"]
38
+ s.rubygems_version = "1.8.24"
39
+ s.summary = "Pulls current and historical data from Yahoo Finance"
40
+
41
+ if s.respond_to? :specification_version then
42
+ s.specification_version = 3
43
+
44
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
45
+ s.add_development_dependency(%q<rspec>, ["~> 2.11.0"])
46
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
47
+ s.add_development_dependency(%q<bundler>, [">= 0"])
48
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
49
+ s.add_development_dependency(%q<simplecov>, [">= 0"])
50
+ else
51
+ s.add_dependency(%q<rspec>, ["~> 2.11.0"])
52
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
53
+ s.add_dependency(%q<bundler>, [">= 0"])
54
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
55
+ s.add_dependency(%q<simplecov>, [">= 0"])
56
+ end
57
+ else
58
+ s.add_dependency(%q<rspec>, ["~> 2.11.0"])
59
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
60
+ s.add_dependency(%q<bundler>, [">= 0"])
61
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
62
+ s.add_dependency(%q<simplecov>, [">= 0"])
63
+ end
64
+ end
65
+
metadata ADDED
@@ -0,0 +1,145 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yafin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Patrik Björklund
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-08-04 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 2.11.0
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 2.11.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: rdoc
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: '3.12'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: '3.12'
46
+ - !ruby/object:Gem::Dependency
47
+ name: bundler
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: jeweler
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 1.8.4
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 1.8.4
78
+ - !ruby/object:Gem::Dependency
79
+ name: simplecov
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ description: Pulls current and historical data from Yahoo Finance. Requires net/http
95
+ and csv
96
+ email: p.bjorklund@gmail.com
97
+ executables: []
98
+ extensions: []
99
+ extra_rdoc_files:
100
+ - LICENSE.txt
101
+ - README.md
102
+ files:
103
+ - .document
104
+ - .rspec
105
+ - Gemfile
106
+ - Gemfile.lock
107
+ - LICENSE.txt
108
+ - README.md
109
+ - Rakefile
110
+ - VERSION
111
+ - lib/yafin.rb
112
+ - lib/yafin/historical_quote.rb
113
+ - lib/yafin/quote.rb
114
+ - spec/spec_helper.rb
115
+ - spec/yafin_spec.rb
116
+ - yafin.gemspec
117
+ homepage: http://github.com/pbjorklund/yafin
118
+ licenses:
119
+ - MIT
120
+ post_install_message:
121
+ rdoc_options: []
122
+ require_paths:
123
+ - lib
124
+ required_ruby_version: !ruby/object:Gem::Requirement
125
+ none: false
126
+ requirements:
127
+ - - ! '>='
128
+ - !ruby/object:Gem::Version
129
+ version: '0'
130
+ segments:
131
+ - 0
132
+ hash: 1815973857855434609
133
+ required_rubygems_version: !ruby/object:Gem::Requirement
134
+ none: false
135
+ requirements:
136
+ - - ! '>='
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ requirements: []
140
+ rubyforge_project:
141
+ rubygems_version: 1.8.24
142
+ signing_key:
143
+ specification_version: 3
144
+ summary: Pulls current and historical data from Yahoo Finance
145
+ test_files: []