stock_index 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +4 -0
- data/README.md +10 -4
- data/bsym/JP.csv +3652 -0
- data/bsym/US.csv +127 -128
- data/cache/XJPX.pstore +0 -0
- data/cache/XNAS.pstore +0 -0
- data/cache/{data.pstore → XNYS.pstore} +0 -0
- data/cache/test.pstore +0 -0
- data/lib/stock_index/bsym_search.rb +3 -2
- data/lib/stock_index/component.rb +48 -15
- data/lib/stock_index/indices.rb +2 -1
- data/lib/stock_index/scrapers/nikkei_scraper.rb +35 -0
- data/lib/stock_index/stock_index.rb +2 -0
- data/lib/stock_index/version.rb +1 -1
- data/lib/stock_index.rb +2 -1
- data/spec/fixtures/html/dji.html +250 -0
- data/spec/fixtures/html/edgar.html +19 -0
- data/spec/fixtures/html/gspc.html +5032 -0
- data/spec/fixtures/html/n225.html +1912 -0
- data/spec/fixtures/html/n225_wikipedia.html +336 -0
- data/spec/fixtures/html/ndx.html +106 -0
- data/spec/fixtures/yaml/DJI.yaml +31 -0
- data/spec/fixtures/yaml/GSPC.yaml +503 -0
- data/spec/fixtures/yaml/N225.yaml +226 -0
- data/spec/fixtures/yaml/NDX.yaml +105 -0
- data/spec/helper.rb +49 -4
- data/spec/stock_index/bsym_search_spec.rb +3 -3
- data/spec/stock_index/component_spec.rb +21 -0
- data/spec/stock_index/stock_index_spec.rb +11 -4
- data/stock_index.gemspec +1 -0
- metadata +45 -9
- data/spec/fixtures/DJI.yaml +0 -181
- data/spec/fixtures/GSPC.yaml +0 -3013
- data/spec/fixtures/NDX.yaml +0 -625
data/cache/XJPX.pstore
ADDED
Binary file
|
data/cache/XNAS.pstore
ADDED
Binary file
|
Binary file
|
data/cache/test.pstore
ADDED
Binary file
|
@@ -5,7 +5,8 @@ class StockIndex
|
|
5
5
|
require 'csv'
|
6
6
|
|
7
7
|
FILES = {
|
8
|
-
us: 'bsym/US.csv'
|
8
|
+
us: 'bsym/US.csv',
|
9
|
+
jp: 'bsym/JP.csv',
|
9
10
|
}
|
10
11
|
|
11
12
|
EXCEPTIONS = {
|
@@ -17,7 +18,7 @@ class StockIndex
|
|
17
18
|
|
18
19
|
class << self
|
19
20
|
|
20
|
-
def find(symbol, pricing_source
|
21
|
+
def find(symbol, pricing_source)
|
21
22
|
return {name: EXCEPTIONS[symbol][:name], bbgid: EXCEPTIONS[symbol][:bbgid]} if EXCEPTIONS.keys.include? symbol
|
22
23
|
CSV.foreach(FILES[pricing_source]) do |row|
|
23
24
|
return {name: row[1], bbgid: row[2]} if row[0] == symbol
|
@@ -4,10 +4,11 @@ class StockIndex
|
|
4
4
|
|
5
5
|
require 'cik'
|
6
6
|
|
7
|
-
def initialize(symbol, market, wikipedia)
|
7
|
+
def initialize(symbol, market, wikipedia, pricing_source = :us)
|
8
8
|
@symbol = symbol
|
9
9
|
@market = market
|
10
10
|
@wikipedia = wikipedia
|
11
|
+
@pricing_source = pricing_source
|
11
12
|
end
|
12
13
|
|
13
14
|
def attributes
|
@@ -19,34 +20,66 @@ class StockIndex
|
|
19
20
|
end
|
20
21
|
|
21
22
|
def cache_lookup
|
22
|
-
store = PStore.new(
|
23
|
+
store = PStore.new(cache_file)
|
23
24
|
store.transaction { store[@symbol] }
|
24
25
|
end
|
25
26
|
|
26
27
|
def cache_write(a)
|
27
|
-
store = PStore.new(
|
28
|
+
store = PStore.new(cache_file)
|
28
29
|
store.transaction do
|
29
30
|
store[@symbol] = a
|
30
31
|
end
|
31
|
-
|
32
|
+
end
|
33
|
+
|
34
|
+
def cache_file
|
35
|
+
"cache/#{@market}.pstore"
|
32
36
|
end
|
33
37
|
|
34
38
|
def attributes_lookup
|
35
|
-
bsym =
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
+
bsym = lookup_bsym
|
40
|
+
cik = lookup_cik
|
41
|
+
return nil unless bsym
|
42
|
+
a = {market: @market, symbol: @symbol, name: bsym[:name], wikipedia: @wikipedia, cik: cik, bbgid: bsym[:bbgid]}
|
43
|
+
cache_write(a)
|
44
|
+
a
|
45
|
+
end
|
46
|
+
|
47
|
+
def us?
|
48
|
+
@pricing_source == :us
|
49
|
+
end
|
50
|
+
|
51
|
+
def lookup_bsym
|
52
|
+
bsym = StockIndex::BsymSearch.find(@symbol, @pricing_source)
|
53
|
+
if bsym
|
54
|
+
bsym
|
55
|
+
else
|
56
|
+
puts "bsym --> #{@symbol}" unless testing?
|
57
|
+
return nil
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
def lookup_cik
|
62
|
+
if us?
|
63
|
+
lookup_cik_us
|
39
64
|
else
|
40
|
-
|
41
|
-
if edgar.nil?
|
42
|
-
puts "cik --> #{@symbol}"
|
43
|
-
else
|
44
|
-
a = {market: @market, symbol: @symbol, name: bsym[:name], wikipedia: @wikipedia, cik: edgar[:cik], bbgid: bsym[:bbgid]}
|
45
|
-
cache_write(a)
|
46
|
-
end
|
65
|
+
nil
|
47
66
|
end
|
48
67
|
end
|
49
68
|
|
69
|
+
def lookup_cik_us
|
70
|
+
edgar = Cik.lookup(SymbolParser.new(@symbol).bsym_to_cik)
|
71
|
+
if edgar
|
72
|
+
edgar[:cik]
|
73
|
+
else
|
74
|
+
puts "cik --> #{@symbol}" unless testing?
|
75
|
+
return nil
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
def testing?
|
80
|
+
@symbol == 'ZZZZ'
|
81
|
+
end
|
82
|
+
|
50
83
|
end
|
51
84
|
|
52
85
|
end
|
data/lib/stock_index/indices.rb
CHANGED
@@ -14,7 +14,8 @@ class StockIndex
|
|
14
14
|
},
|
15
15
|
'^N225' => {
|
16
16
|
name: 'NIKKEI 225',
|
17
|
-
url: 'http://indexes.nikkei.co.jp/en/nkave/index/component?idx=nk225'
|
17
|
+
url: 'http://indexes.nikkei.co.jp/en/nkave/index/component?idx=nk225',
|
18
|
+
wikipedia_url: 'http://en.wikipedia.org/wiki/Nikkei_225'
|
18
19
|
},
|
19
20
|
'^STOXX50E' => {
|
20
21
|
name: 'EURO STOXX 50',
|
@@ -0,0 +1,35 @@
|
|
1
|
+
class NikkeiScraper < StockIndex::BaseScraper
|
2
|
+
|
3
|
+
def scrape
|
4
|
+
doc = Nokogiri::HTML(open(StockIndex::INDICES['^N225'][:url]))
|
5
|
+
@wikipedia_hash = parse_wikipedia_page(Nokogiri::HTML(open(StockIndex::INDICES['^N225'][:wikipedia_url])))
|
6
|
+
parse_rows doc.css('table.cmn-table tr.cmn-charcter')
|
7
|
+
end
|
8
|
+
|
9
|
+
private
|
10
|
+
|
11
|
+
def parse_rows(rows)
|
12
|
+
rows.inject([]) do |array, tr|
|
13
|
+
symbol = tr.css('td')[0].text
|
14
|
+
market = 'XJPX'
|
15
|
+
if symbol && market
|
16
|
+
component = StockIndex::Component.new(symbol, market, @wikipedia_hash[symbol], :jp)
|
17
|
+
array << component.attributes if component.valid?
|
18
|
+
end
|
19
|
+
array
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def parse_wikipedia_page(wikipedia_doc)
|
24
|
+
wikipedia_doc.css('li').inject({}) do |hash, li|
|
25
|
+
md = li.text.match(/.+\(TYO:\s+(\d{4})/)
|
26
|
+
if md
|
27
|
+
symbol = md[1]
|
28
|
+
link = build_wikipedia_link(li.css('a').first.attributes['href'].value)
|
29
|
+
hash[symbol] = link
|
30
|
+
end
|
31
|
+
hash
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
data/lib/stock_index/version.rb
CHANGED
data/lib/stock_index.rb
CHANGED
@@ -9,4 +9,5 @@ require 'stock_index/symbol_parser'
|
|
9
9
|
require 'stock_index/scrapers/base_scraper'
|
10
10
|
require 'stock_index/scrapers/dji_scraper'
|
11
11
|
require 'stock_index/scrapers/SP500_scraper'
|
12
|
-
require 'stock_index/scrapers/nasdaq_scraper'
|
12
|
+
require 'stock_index/scrapers/nasdaq_scraper'
|
13
|
+
require 'stock_index/scrapers/nikkei_scraper'
|
@@ -0,0 +1,250 @@
|
|
1
|
+
<table class="wikitable sortable jquery-tablesorter">
|
2
|
+
<thead><tr>
|
3
|
+
<th class="headerSort" tabindex="0" role="columnheader button" title="Sort ascending">Company</th>
|
4
|
+
<th class="headerSort" tabindex="0" role="columnheader button" title="Sort ascending">Exchange</th>
|
5
|
+
<th class="headerSort" tabindex="0" role="columnheader button" title="Sort ascending">Symbol</th>
|
6
|
+
<th class="headerSort" tabindex="0" role="columnheader button" title="Sort ascending">Industry</th>
|
7
|
+
<th class="headerSort" tabindex="0" role="columnheader button" title="Sort ascending">Date Added</th>
|
8
|
+
<th class="headerSort" tabindex="0" role="columnheader button" title="Sort ascending">Notes</th>
|
9
|
+
</tr></thead><tbody>
|
10
|
+
<tr>
|
11
|
+
<td><a href="/wiki/3M" title="3M">3M</a></td>
|
12
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
13
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:MMM">MMM</a></td>
|
14
|
+
<td><a href="/wiki/Conglomerate_(company)" title="Conglomerate (company)">Conglomerate</a></td>
|
15
|
+
<td>1976-08-09</td>
|
16
|
+
<td>as Minnesota Mining and Manufacturing</td>
|
17
|
+
</tr>
|
18
|
+
<tr>
|
19
|
+
<td><a href="/wiki/American_Express" title="American Express">American Express</a></td>
|
20
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
21
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:AXP">AXP</a></td>
|
22
|
+
<td><a href="/wiki/Consumer_finance" title="Consumer finance" class="mw-redirect">Consumer finance</a></td>
|
23
|
+
<td>1982-08-30</td>
|
24
|
+
<td></td>
|
25
|
+
</tr>
|
26
|
+
<tr>
|
27
|
+
<td><a href="/wiki/AT%26T" title="AT&T">AT&T</a></td>
|
28
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
29
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:T">T</a></td>
|
30
|
+
<td><a href="/wiki/Telecommunication" title="Telecommunication">Telecommunication</a></td>
|
31
|
+
<td>1999-11-01</td>
|
32
|
+
<td></td>
|
33
|
+
</tr>
|
34
|
+
<tr>
|
35
|
+
<td><a href="/wiki/Boeing" title="Boeing">Boeing</a></td>
|
36
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
37
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:BA">BA</a></td>
|
38
|
+
<td><a href="/wiki/Aerospace_manufacturer" title="Aerospace manufacturer">Aerospace</a> and <a href="/wiki/Defense_contractor" title="Defense contractor" class="mw-redirect">defense</a></td>
|
39
|
+
<td>1987-03-12</td>
|
40
|
+
<td></td>
|
41
|
+
</tr>
|
42
|
+
<tr>
|
43
|
+
<td><a href="/wiki/Caterpillar_Inc." title="Caterpillar Inc.">Caterpillar</a></td>
|
44
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
45
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:CAT">CAT</a></td>
|
46
|
+
<td><a href="/wiki/Heavy_equipment_(construction)" title="Heavy equipment (construction)" class="mw-redirect">Construction</a> and <a href="/wiki/Mining" title="Mining">mining equipment</a></td>
|
47
|
+
<td>1991-05-06</td>
|
48
|
+
<td></td>
|
49
|
+
</tr>
|
50
|
+
<tr>
|
51
|
+
<td><a href="/wiki/Chevron_Corporation" title="Chevron Corporation">Chevron</a></td>
|
52
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
53
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=CVX">CVX</a></td>
|
54
|
+
<td><a href="/wiki/Oil_%26_gas_industry" title="Oil & gas industry" class="mw-redirect">Oil & gas</a></td>
|
55
|
+
<td>2008-02-19</td>
|
56
|
+
<td>also 1930-07-18 to 1999-11-01</td>
|
57
|
+
</tr>
|
58
|
+
<tr>
|
59
|
+
<td><a href="/wiki/Cisco_Systems" title="Cisco Systems">Cisco Systems</a></td>
|
60
|
+
<td><a href="/wiki/NASDAQ" title="NASDAQ">NASDAQ</a></td>
|
61
|
+
<td><a rel="nofollow" class="external text" href="http://www.nasdaq.com/symbol/csco">CSCO</a></td>
|
62
|
+
<td><a href="/wiki/Computer_networking" title="Computer networking" class="mw-redirect">Computer networking</a></td>
|
63
|
+
<td>2009-06-08</td>
|
64
|
+
<td></td>
|
65
|
+
</tr>
|
66
|
+
<tr>
|
67
|
+
<td><a href="/wiki/The_Coca-Cola_Company" title="The Coca-Cola Company">Coca-Cola</a></td>
|
68
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
69
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=KO">KO</a></td>
|
70
|
+
<td><a href="/wiki/Drink" title="Drink">Beverages</a></td>
|
71
|
+
<td>1987-03-12</td>
|
72
|
+
<td>also 1932-05-26 to 1935-11-20</td>
|
73
|
+
</tr>
|
74
|
+
<tr>
|
75
|
+
<td><a href="/wiki/DuPont" title="DuPont">DuPont</a></td>
|
76
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
77
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=DD">DD</a></td>
|
78
|
+
<td><a href="/wiki/Chemical_industry" title="Chemical industry">Chemical industry</a></td>
|
79
|
+
<td>1935-11-20</td>
|
80
|
+
<td>also 1924-01-22 to 1925-08-31</td>
|
81
|
+
</tr>
|
82
|
+
<tr>
|
83
|
+
<td><a href="/wiki/ExxonMobil" title="ExxonMobil">ExxonMobil</a></td>
|
84
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
85
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=XOM">XOM</a></td>
|
86
|
+
<td><a href="/wiki/Oil_%26_gas_industry" title="Oil & gas industry" class="mw-redirect">Oil & gas</a></td>
|
87
|
+
<td>1928-10-01</td>
|
88
|
+
<td>as <a href="/wiki/Esso" title="Esso">Standard Oil of New Jersey</a></td>
|
89
|
+
</tr>
|
90
|
+
<tr>
|
91
|
+
<td><a href="/wiki/General_Electric" title="General Electric">General Electric</a></td>
|
92
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
93
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=GE">GE</a></td>
|
94
|
+
<td><a href="/wiki/Conglomerate_(company)" title="Conglomerate (company)">Conglomerate</a></td>
|
95
|
+
<td>1907-11-07</td>
|
96
|
+
<td></td>
|
97
|
+
</tr>
|
98
|
+
<tr>
|
99
|
+
<td><a href="/wiki/Goldman_Sachs" title="Goldman Sachs">Goldman Sachs</a></td>
|
100
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
101
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:GS">GS</a></td>
|
102
|
+
<td><a href="/wiki/Banking" title="Banking" class="mw-redirect">Banking</a>, <a href="/wiki/Financial_services" title="Financial services">Financial services</a></td>
|
103
|
+
<td>2013-09-20</td>
|
104
|
+
<td></td>
|
105
|
+
</tr>
|
106
|
+
<tr>
|
107
|
+
<td><a href="/wiki/The_Home_Depot" title="The Home Depot">The Home Depot</a></td>
|
108
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
109
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:HD">HD</a></td>
|
110
|
+
<td><a href="/wiki/Home_improvement" title="Home improvement">Home improvement</a> <a href="/wiki/Retailing" title="Retailing" class="mw-redirect">retailer</a></td>
|
111
|
+
<td>1999-11-01</td>
|
112
|
+
<td></td>
|
113
|
+
</tr>
|
114
|
+
<tr>
|
115
|
+
<td><a href="/wiki/Intel" title="Intel">Intel</a></td>
|
116
|
+
<td><a href="/wiki/NASDAQ" title="NASDAQ">NASDAQ</a></td>
|
117
|
+
<td><a rel="nofollow" class="external text" href="http://www.nasdaq.com/symbol/intc">INTC</a></td>
|
118
|
+
<td><a href="/wiki/Semiconductor" title="Semiconductor">Semiconductors</a></td>
|
119
|
+
<td>1999-11-01</td>
|
120
|
+
<td></td>
|
121
|
+
</tr>
|
122
|
+
<tr>
|
123
|
+
<td><a href="/wiki/IBM" title="IBM">IBM</a></td>
|
124
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
125
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:IBM">IBM</a></td>
|
126
|
+
<td><a href="/wiki/Computers" title="Computers" class="mw-redirect">Computers</a> and <a href="/wiki/Technology" title="Technology">technology</a></td>
|
127
|
+
<td>1979-06-29</td>
|
128
|
+
<td>also 1932-05-26 to 1939-03-04</td>
|
129
|
+
</tr>
|
130
|
+
<tr>
|
131
|
+
<td><a href="/wiki/Johnson_%26_Johnson" title="Johnson & Johnson">Johnson & Johnson</a></td>
|
132
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
133
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=JNJ">JNJ</a></td>
|
134
|
+
<td><a href="/wiki/Pharmaceutical_industry" title="Pharmaceutical industry">Pharmaceuticals</a></td>
|
135
|
+
<td>1997-03-17</td>
|
136
|
+
<td></td>
|
137
|
+
</tr>
|
138
|
+
<tr>
|
139
|
+
<td><a href="/wiki/JPMorgan_Chase" title="JPMorgan Chase">JPMorgan Chase</a></td>
|
140
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
141
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=JPM">JPM</a></td>
|
142
|
+
<td><a href="/wiki/Banking" title="Banking" class="mw-redirect">Banking</a></td>
|
143
|
+
<td>1991-05-06</td>
|
144
|
+
<td></td>
|
145
|
+
</tr>
|
146
|
+
<tr>
|
147
|
+
<td><a href="/wiki/McDonald%27s" title="McDonald's">McDonald's</a></td>
|
148
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
149
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=MCD">MCD</a></td>
|
150
|
+
<td><a href="/wiki/Fast_food" title="Fast food">Fast food</a></td>
|
151
|
+
<td>1985-10-30</td>
|
152
|
+
<td></td>
|
153
|
+
</tr>
|
154
|
+
<tr>
|
155
|
+
<td><a href="/wiki/Merck_%26_Co." title="Merck & Co.">Merck</a></td>
|
156
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
157
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=MRK">MRK</a></td>
|
158
|
+
<td><a href="/wiki/Pharmaceutical_industry" title="Pharmaceutical industry">Pharmaceuticals</a></td>
|
159
|
+
<td>1979-06-29</td>
|
160
|
+
<td></td>
|
161
|
+
</tr>
|
162
|
+
<tr>
|
163
|
+
<td><a href="/wiki/Microsoft" title="Microsoft">Microsoft</a></td>
|
164
|
+
<td><a href="/wiki/NASDAQ" title="NASDAQ">NASDAQ</a></td>
|
165
|
+
<td><a rel="nofollow" class="external text" href="http://www.nasdaq.com/symbol/msft">MSFT</a></td>
|
166
|
+
<td><a href="/wiki/Software" title="Software">Software</a></td>
|
167
|
+
<td>1999-11-01</td>
|
168
|
+
<td></td>
|
169
|
+
</tr>
|
170
|
+
<tr>
|
171
|
+
<td><a href="/wiki/Nike,_Inc." title="Nike, Inc.">Nike</a></td>
|
172
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
173
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:NKE">NKE</a></td>
|
174
|
+
<td><a href="/wiki/Apparel" title="Apparel" class="mw-redirect">Apparel</a></td>
|
175
|
+
<td>2013-09-20</td>
|
176
|
+
<td></td>
|
177
|
+
</tr>
|
178
|
+
<tr>
|
179
|
+
<td><a href="/wiki/Pfizer" title="Pfizer">Pfizer</a></td>
|
180
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
181
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=PFE">PFE</a></td>
|
182
|
+
<td><a href="/wiki/Pharmaceutical_industry" title="Pharmaceutical industry">Pharmaceuticals</a></td>
|
183
|
+
<td>2004-04-08</td>
|
184
|
+
<td></td>
|
185
|
+
</tr>
|
186
|
+
<tr>
|
187
|
+
<td><a href="/wiki/Procter_%26_Gamble" title="Procter & Gamble">Procter & Gamble</a></td>
|
188
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
189
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=PG">PG</a></td>
|
190
|
+
<td><a href="/wiki/Fast_moving_consumer_goods" title="Fast moving consumer goods" class="mw-redirect">Consumer goods</a></td>
|
191
|
+
<td>1932-05-26</td>
|
192
|
+
<td></td>
|
193
|
+
</tr>
|
194
|
+
<tr>
|
195
|
+
<td><a href="/wiki/The_Travelers_Companies" title="The Travelers Companies">Travelers</a></td>
|
196
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
197
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=TRV">TRV</a></td>
|
198
|
+
<td><a href="/wiki/Insurance" title="Insurance">Insurance</a></td>
|
199
|
+
<td>2009-06-08</td>
|
200
|
+
<td></td>
|
201
|
+
</tr>
|
202
|
+
<tr>
|
203
|
+
<td><a href="/wiki/UnitedHealth_Group" title="UnitedHealth Group">UnitedHealth Group</a></td>
|
204
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
205
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=UNH">UNH</a></td>
|
206
|
+
<td><a href="/wiki/Managed_health_care" title="Managed health care" class="mw-redirect">Managed health care</a></td>
|
207
|
+
<td>2012-09-24</td>
|
208
|
+
<td></td>
|
209
|
+
</tr>
|
210
|
+
<tr>
|
211
|
+
<td><a href="/wiki/United_Technologies_Corporation" title="United Technologies Corporation">United Technologies</a></td>
|
212
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
213
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=UTX">UTX</a></td>
|
214
|
+
<td><a href="/wiki/Conglomerate_(company)" title="Conglomerate (company)">Conglomerate</a></td>
|
215
|
+
<td>1939-03-14</td>
|
216
|
+
<td>as United Aircraft</td>
|
217
|
+
</tr>
|
218
|
+
<tr>
|
219
|
+
<td><a href="/wiki/Verizon_Communications" title="Verizon Communications">Verizon</a></td>
|
220
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
221
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=VZ">VZ</a></td>
|
222
|
+
<td><a href="/wiki/Telecommunication" title="Telecommunication">Telecommunication</a></td>
|
223
|
+
<td>2004-04-08</td>
|
224
|
+
<td></td>
|
225
|
+
</tr>
|
226
|
+
<tr>
|
227
|
+
<td><a href="/wiki/Visa_Inc." title="Visa Inc.">Visa</a></td>
|
228
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
229
|
+
<td><a rel="nofollow" class="external text" href="https://www.nyse.com/quote/XNYS:V">V</a></td>
|
230
|
+
<td><a href="/wiki/Consumer_banking" title="Consumer banking" class="mw-redirect">Consumer banking</a></td>
|
231
|
+
<td>2013-09-20</td>
|
232
|
+
<td></td>
|
233
|
+
</tr>
|
234
|
+
<tr>
|
235
|
+
<td><a href="/wiki/Walmart" title="Walmart">Wal-Mart</a></td>
|
236
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
237
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=WMT">WMT</a></td>
|
238
|
+
<td><a href="/wiki/Retailing" title="Retailing" class="mw-redirect">Retail</a></td>
|
239
|
+
<td>1997-03-17</td>
|
240
|
+
<td></td>
|
241
|
+
</tr>
|
242
|
+
<tr>
|
243
|
+
<td><a href="/wiki/The_Walt_Disney_Company" title="The Walt Disney Company">Walt Disney</a></td>
|
244
|
+
<td><a href="/wiki/New_York_Stock_Exchange" title="New York Stock Exchange">NYSE</a></td>
|
245
|
+
<td><a rel="nofollow" class="external text" href="http://www.nyse.com/about/listed/quickquote.html?ticker=DIS">DIS</a></td>
|
246
|
+
<td><a href="/wiki/Broadcasting" title="Broadcasting">Broadcasting</a> and <a href="/wiki/Entertainment" title="Entertainment">entertainment</a></td>
|
247
|
+
<td>1991-05-06</td>
|
248
|
+
<td></td>
|
249
|
+
</tr>
|
250
|
+
</tbody><tfoot></tfoot></table>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<div style="margin: 15px 0 10px 0; padding: 3px; overflow: hidden; background-color: #BCD6F8;">
|
2
|
+
<div class="mailer">Mailing Address
|
3
|
+
<span class="mailerAddress">170 WEST TASMAN DR</span>
|
4
|
+
<span class="mailerAddress">
|
5
|
+
SAN JOSE CA 95134-1706 </span>
|
6
|
+
</div>
|
7
|
+
<div class="mailer">Business Address
|
8
|
+
<span class="mailerAddress">170 WEST TASMAN DR</span>
|
9
|
+
<span class="mailerAddress">
|
10
|
+
SAN JOSE CA 95134-1706 </span>
|
11
|
+
<span class="mailerAddress">4085264000</span>
|
12
|
+
</div>
|
13
|
+
<div class="companyInfo">
|
14
|
+
<span class="companyName">CISCO SYSTEMS, INC. <acronym title="Central Index Key">CIK</acronym>#: <a href="/cgi-bin/browse-edgar?action=getcompany&CIK=0000858877&owner=include&count=40">0000858877 (see all company filings)</a></span>
|
15
|
+
<p class="identInfo"><acronym title="Standard Industrial Code">SIC</acronym>: <a href="/cgi-bin/browse-edgar?action=getcompany&SIC=3576&owner=include&count=40">3576</a> - COMPUTER COMMUNICATIONS EQUIPMENT<br>State location: <a href="/cgi-bin/browse-edgar?action=getcompany&State=CA&owner=include&count=40">CA</a> | State of Inc.: <strong>CA</strong> | Fiscal Year End: 0728<br>formerly: CISCO SYSTEMS INC (filings through 2011-11-22)<br>(Assistant Director Office: 3)<br>Get <a href="/cgi-bin/own-disp?action=getissuer&CIK=0000858877"><b>insider transactions</b></a> for this <b>issuer</b>.
|
16
|
+
<br>Get <a href="/cgi-bin/own-disp?action=getowner&CIK=0000858877"><b>insider transactions</b></a> for this <b>reporting owner</b>.
|
17
|
+
</p>
|
18
|
+
</div>
|
19
|
+
</div>
|