├── .gitignore ├── .travis.yml ├── schema.sql ├── README.md ├── LICENSE ├── main.go └── sp500.json /.gitignore: -------------------------------------------------------------------------------- 1 | sp500scraper 2 | *.db 3 | *.db-journal 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE symbolids ( 2 | "id" INTEGER PRIMARY KEY NOT NULL, 3 | "symbol" TEXT NOT NULL, 4 | "exchange" TEXT NOT NULL, 5 | "name" text not null, 6 | "industry" text not null, 7 | "subindustry" text not null 8 | ); 9 | CREATE TABLE candlestick ( 10 | "id" INTEGER NOT NULL, 11 | "starttime" DATETIME NOT NULL, 12 | "endtime" DATETIME NOT NULL, 13 | "open" REAL NOT NULL, 14 | "close" REAL NOT NULL, 15 | "high" REAL NOT NULL, 16 | "low" REAL NOT NULL, 17 | "volume" INTEGER NOT NULL, 18 | foreign key(id) references symbolids(id) 19 | ); 20 | CREATE INDEX "i_candlestick" on candlestick (id ASC, starttime DESC, endtime DESC); 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #S&P 500 Symbol Scraper 2 | 3 | This is an example program, written in Go, that queries 1 day resolution candlestick data for 4 | symbols belonging to the S&P 500 from the Questrade API, and saves the result into an 5 | SQLite database. This program uses my wrapper over the Questrade API, [qapi](https://github.com/alexurquhart/qapi). 6 | 7 | ##Getting Started 8 | To start, you will need to be able to access the [Questrade API](http://www.questrade.com/api) 9 | 10 | To run the example, you will need to store your refresh token in the environment variable REFRESH_TOKEN 11 | ```bash 12 | export REFRESH_TOKEN= 13 | ``` 14 | 15 | ##Dependencies 16 | ``` 17 | go get github.com/alexurquhart/qapi 18 | go get github.com/mattn/go-sqlite3 19 | ``` 20 | 21 | ##Notes 22 | The symbols stored in sp500.json were scraped from Wikipedia on March 31st 2015 - this program 23 | does not take into account when symbols were added or removed from the index, or any splits/merges. It scrapes all symbols 24 | in the list back to a maximum of 5 years. 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Alex Urquhart 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "database/sql" 5 | "encoding/json" 6 | "errors" 7 | "io/ioutil" 8 | "log" 9 | "os" 10 | "sync" 11 | "time" 12 | 13 | "github.com/alexurquhart/qapi" 14 | _ "github.com/mattn/go-sqlite3" 15 | ) 16 | 17 | type SP500Symbol struct { 18 | Symbol string `json:"symbol"` 19 | Name string `json:"name"` 20 | Industry string `json:"industry"` 21 | SubIndustry string `json:"subindustry"` 22 | Exchange string `json:"exchange"` 23 | SymbolID int 24 | Candles []qapi.Candlestick 25 | } 26 | 27 | // Extract candlestick data over 5 years for a given symbol. 28 | func extractCandles(c *qapi.Client, t *time.Ticker, id int) ([]qapi.Candlestick, error) { 29 | <-t.C 30 | candles, err := c.GetCandles(id, time.Now().AddDate(-5, 0, 0), time.Now(), "OneDay") 31 | if err != nil { 32 | return []qapi.Candlestick{}, err 33 | } 34 | 35 | return candles, nil 36 | } 37 | 38 | // Find data for the symbol - first the internal symbol identifier needs to be found 39 | // then candlestrick data is extracted. The result should then be saved to a database 40 | func findSymbol(c *qapi.Client, t *time.Ticker, sym *SP500Symbol) error { 41 | <-t.C 42 | res, err := c.SearchSymbols(sym.Symbol, 0) 43 | if err != nil { 44 | return err 45 | } 46 | 47 | // Find the symbol and extract the symbol ID 48 | for _, r := range res { 49 | // If the symbol is a match - extract candles 50 | if r.Symbol == sym.Symbol && r.ListingExchange == sym.Exchange { 51 | candles, err := extractCandles(c, t, r.SymbolID) 52 | if err != nil { 53 | return err 54 | } 55 | sym.SymbolID = r.SymbolID 56 | sym.Candles = candles 57 | return nil 58 | } 59 | } 60 | return errors.New("Symbol not found: " + sym.Symbol) 61 | } 62 | 63 | // Starts a goroutine that iterates over a channel of incoming 64 | // symbols. Returns an error channel. 65 | func saveData(wg *sync.WaitGroup, symChan chan SP500Symbol) chan error { 66 | errChan := make(chan error) 67 | go func(wg *sync.WaitGroup, errChan chan error, symChan chan SP500Symbol) { 68 | defer close(errChan) 69 | 70 | // Open a database connection 71 | db, err := sql.Open("sqlite3", "sp500.db") 72 | if err != nil { 73 | errChan <- err 74 | return 75 | } 76 | defer db.Close() 77 | 78 | // Read the schema file and create the database 79 | file, _ := ioutil.ReadFile("schema.sql") 80 | _, err = db.Exec(string(file)) 81 | if err != nil { 82 | errChan <- err 83 | return 84 | } 85 | 86 | // Prepare statements to insert data into the symbol and candlestick tables 87 | symStmt, err := db.Prepare("insert into symbolids values (?, ?, ?, ?, ?, ?)") 88 | if err != nil { 89 | errChan <- err 90 | return 91 | } 92 | defer symStmt.Close() 93 | cdlStmt, err := db.Prepare("insert into candlestick values(?, ?, ?, ?, ?, ?, ?, ?)") 94 | if err != nil { 95 | errChan <- err 96 | return 97 | } 98 | defer cdlStmt.Close() 99 | 100 | // Iterate over all incoming symbols 101 | for sym := range symChan { 102 | tx, _ := db.Begin() 103 | _, err = symStmt.Exec(sym.SymbolID, sym.Symbol, sym.Exchange, sym.Name, sym.Industry, sym.SubIndustry) 104 | if err != nil { 105 | errChan <- err 106 | } 107 | 108 | for _, cdl := range sym.Candles { 109 | _, err := cdlStmt.Exec(sym.SymbolID, cdl.Start, cdl.End, cdl.Open, cdl.Close, cdl.High, cdl.Low, cdl.Volume) 110 | if err != nil { 111 | errChan <- err 112 | } 113 | } 114 | err := tx.Commit() 115 | if err != nil { 116 | errChan <- err 117 | } 118 | 119 | } 120 | wg.Done() 121 | }(wg, errChan, symChan) 122 | return errChan 123 | } 124 | 125 | func main() { 126 | // Read in the JSON file of S&P 500 Symbols and their exchanges 127 | file, _ := ioutil.ReadFile("sp500.json") 128 | var symbols []SP500Symbol 129 | err := json.Unmarshal(file, &symbols) 130 | if err != nil { 131 | log.Fatal(err) 132 | } 133 | 134 | // Login to the server using the refresh token stored 135 | // in the environment variables 136 | refresh := os.Getenv("REFRESH_TOKEN") 137 | client, err := qapi.NewClient(refresh, false) 138 | if err != nil { 139 | log.Fatal(err) 140 | } 141 | log.Println("export REFRESH_TOKEN=" + client.Credentials.RefreshToken + "\n\n") 142 | 143 | // Create a rate limting ticker - Questrade limits market calls to 5 per second 144 | // up to 15 000 calls per hour. Lets set a delay of 250 ms - which will get us 145 | // 14 400 calls per hour at 4 requests per second 146 | interval := 250 * time.Millisecond 147 | ticker := time.NewTicker(interval) 148 | 149 | // Create a new wait group so that main will block until all goroutines 150 | // are finished (saving to the database takes awhile) 151 | var wg sync.WaitGroup 152 | wg.Add(2) 153 | 154 | // Create a channel for the populated symbol structs to be sent over 155 | // to be saved to the database. 156 | symChan := make(chan SP500Symbol) 157 | errChan := saveData(&wg, symChan) 158 | stopChan := make(chan bool) 159 | 160 | // Create a new map that will hold symbols that could not be found 161 | notFound := make([]SP500Symbol, 1) 162 | 163 | // Separate goroutine to output database write errors 164 | go func(wg *sync.WaitGroup, errChan chan error) { 165 | for err := range errChan { 166 | log.Println("DB Error: ", err) 167 | } 168 | log.Println("DB error logging stopped.") 169 | close(stopChan) 170 | wg.Done() 171 | }(&wg, errChan) 172 | 173 | L: 174 | for _, sym := range symbols { 175 | select { 176 | case <-client.SessionTimer.C: // Login to the practice server again when session expires 177 | log.Println("Logging in again...") 178 | client.Login(false) 179 | break 180 | case _, ok := <-stopChan: // Break the loop if a critical DB error occurs in the other goroutine 181 | if !ok { 182 | break L 183 | } 184 | break 185 | default: 186 | err := findSymbol(client, ticker, &sym) 187 | if err != nil { 188 | notFound = append(notFound, sym) 189 | log.Printf("Could not find symbol %s\n", sym.Symbol) 190 | break 191 | } 192 | log.Printf("Retreived %d candles for %s\n", len(sym.Candles), sym.Symbol) 193 | symChan <- sym 194 | break 195 | } 196 | } 197 | close(symChan) 198 | log.Println("Waiting for data to be saved...") 199 | wg.Wait() 200 | 201 | // Output list of symbols not found 202 | log.Printf("%d Symbols Not Saved", len(notFound)) 203 | for _, e := range notFound { 204 | log.Println(e.Symbol) 205 | } 206 | log.Println("export REFRESH_TOKEN=" + client.Credentials.RefreshToken + "\n\n") 207 | } 208 | -------------------------------------------------------------------------------- /sp500.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "exchange": "NYSE", 4 | "symbol": "ABT", 5 | "name":"Abbott Laboratories", 6 | "industry": "Health Care", 7 | "subindustry": "Health Care Equipment & Services" 8 | }, 9 | { 10 | "exchange": "NYSE", 11 | "symbol": "ABBV", 12 | "name": "AbbVie", 13 | "industry": "Health Care", 14 | "subindustry": "Pharmaceuticals" 15 | }, 16 | { 17 | "exchange": "NYSE", 18 | "symbol": "ACN", 19 | "name":"Accenture plc", 20 | "industry": "Information Technology", 21 | "subindustry": "IT Consulting & Other Services" 22 | }, 23 | { 24 | "exchange": "NYSE", 25 | "symbol": "ACE", 26 | "name":"ACE Limited", 27 | "industry": "Financials", 28 | "subindustry": "Property & Casualty Insurance" 29 | }, 30 | { 31 | "exchange": "NYSE", 32 | "symbol": "ACT", 33 | "name":"Actavis|Actavis plc", 34 | "industry": "Health Care", 35 | "subindustry": "Pharmaceuticals" 36 | }, 37 | { 38 | "exchange": "NASDAQ", 39 | "symbol": "ADBE", 40 | "name":"Adobe Systems Inc", 41 | "industry": "Information Technology", 42 | "subindustry": "Application Software" 43 | }, 44 | { 45 | "exchange": "NYSE", 46 | "symbol": "ADT", 47 | "name":"ADT Corp", 48 | "industry": "Industrials", 49 | "subindustry": "Diversified Commercial Services" 50 | }, 51 | { 52 | "exchange": "NYSE", 53 | "symbol": "AES", 54 | "name":"AES Corp", 55 | "industry": "Utilities", 56 | "subindustry": "Independent Power Producers & Energy Traders" 57 | }, 58 | { 59 | "exchange": "NYSE", 60 | "symbol": "AET", 61 | "name":"Aetna Inc", 62 | "industry": "Health Care", 63 | "subindustry": "Managed Health Care" 64 | }, 65 | { 66 | "exchange": "NYSE", 67 | "symbol": "AFL", 68 | "name":"AFLAC Inc", 69 | "industry": "Financials", 70 | "subindustry": "Life & Health Insurance" 71 | }, 72 | { 73 | "exchange": "NYSE", 74 | "symbol": "AMG", 75 | "name":"Affiliated Managers Group Inc", 76 | "industry": "Financials", 77 | "subindustry": "Asset Management & Custody Banks" 78 | }, 79 | { 80 | "exchange": "NYSE", 81 | "symbol": "A", 82 | "name":"Agilent Technologies Inc", 83 | "industry": "Health Care", 84 | "subindustry": "Health Care Equipment & Services" 85 | }, 86 | { 87 | "exchange": "NYSE", 88 | "symbol": "GAS", 89 | "name":"AGL Resources Inc.", 90 | "industry": "Utilities", 91 | "subindustry": "Gas Utilities" 92 | }, 93 | { 94 | "exchange": "NYSE", 95 | "symbol": "APD", 96 | "name":"Air Products & Chemicals Inc", 97 | "industry": "Materials", 98 | "subindustry": "Industrial Gases" 99 | }, 100 | { 101 | "exchange": "NYSE", 102 | "symbol": "ARG", 103 | "name":"Airgas Inc", 104 | "industry": "Materials", 105 | "subindustry": "Industrial Gases" 106 | }, 107 | { 108 | "exchange": "NASDAQ", 109 | "symbol": "AKAM", 110 | "name":"Akamai Technologies Inc", 111 | "industry": "Information Technology", 112 | "subindustry": "Internet Software & Services" 113 | }, 114 | { 115 | "exchange": "NYSE", 116 | "symbol": "AA", 117 | "name":"Alcoa Inc", 118 | "industry": "Materials", 119 | "subindustry": "Aluminum" 120 | }, 121 | { 122 | "exchange": "NASDAQ", 123 | "symbol": "ALXN", 124 | "name":"Alexion Pharmaceuticals", 125 | "industry": "Health Care", 126 | "subindustry": "Biotechnology" 127 | }, 128 | { 129 | "exchange": "NYSE", 130 | "symbol": "ATI", 131 | "name":"Allegheny Technologies Inc", 132 | "industry": "Materials", 133 | "subindustry": "Diversified Metals & Mining" 134 | }, 135 | { 136 | "exchange": "NYSE", 137 | "symbol": "ALLE", 138 | "name":"Allegion", 139 | "industry": "Industrials", 140 | "subindustry": "Building Products" 141 | }, 142 | { 143 | "exchange": "NYSE", 144 | "symbol": "ADS", 145 | "name":"Alliance Data Systems", 146 | "industry": "Information Technology", 147 | "subindustry": "Data Processing & Outsourced Services" 148 | }, 149 | { 150 | "exchange": "NYSE", 151 | "symbol": "ALL", 152 | "name":"Allstate Corp", 153 | "industry": "Financials", 154 | "subindustry": "Property & Casualty Insurance" 155 | }, 156 | { 157 | "exchange": "NASDAQ", 158 | "symbol": "ALTR", 159 | "name":"Altera Corp", 160 | "industry": "Information Technology", 161 | "subindustry": "Semiconductors" 162 | }, 163 | { 164 | "exchange": "NYSE", 165 | "symbol": "MO", 166 | "name":"Altria Group Inc", 167 | "industry": "Consumer Staples", 168 | "subindustry": "Tobacco" 169 | }, 170 | { 171 | "exchange": "NASDAQ", 172 | "symbol": "AMZN", 173 | "name":"Amazon.com Inc", 174 | "industry": "Consumer Discretionary", 175 | "subindustry": "Internet Retail" 176 | }, 177 | { 178 | "exchange": "NYSE", 179 | "symbol": "AEE", 180 | "name":"Ameren Corp", 181 | "industry": "Utilities", 182 | "subindustry": "MultiUtilities" 183 | }, 184 | { 185 | "exchange": "NASDAQ", 186 | "symbol": "AAL", 187 | "name":"American Airlines Group", 188 | "industry": "Industrials", 189 | "subindustry": "Airlines" 190 | }, 191 | { 192 | "exchange": "NYSE", 193 | "symbol": "AEP", 194 | "name":"American Electric Power", 195 | "industry": "Utilities", 196 | "subindustry": "Electric Utilities" 197 | }, 198 | { 199 | "exchange": "NYSE", 200 | "symbol": "AXP", 201 | "name":"American Express Co", 202 | "industry": "Financials", 203 | "subindustry": "Consumer Finance" 204 | }, 205 | { 206 | "exchange": "NYSE", 207 | "symbol": "AIG", 208 | "name":"American International Group|American International Group, Inc.", 209 | "industry": "Financials", 210 | "subindustry": "Property & Casualty Insurance" 211 | }, 212 | { 213 | "exchange": "NYSE", 214 | "symbol": "AMT", 215 | "name":"American Tower Corp A", 216 | "industry": "Financials", 217 | "subindustry": "Specialized REITs" 218 | }, 219 | { 220 | "exchange": "NYSE", 221 | "symbol": "AMP", 222 | "name":"Ameriprise Financial", 223 | "industry": "Financials", 224 | "subindustry": "Diversified Financial Services" 225 | }, 226 | { 227 | "exchange": "NYSE", 228 | "symbol": "ABC", 229 | "name":"AmerisourceBergen Corp", 230 | "industry": "Health Care", 231 | "subindustry": "Health Care Distribution & Services" 232 | }, 233 | { 234 | "exchange": "NYSE", 235 | "symbol": "AME", 236 | "name":"Ametek", 237 | "industry": "Industrials", 238 | "subindustry": "Electrical Components & Equipment" 239 | }, 240 | { 241 | "exchange": "NASDAQ", 242 | "symbol": "AMGN", 243 | "name":"Amgen Inc", 244 | "industry": "Health Care", 245 | "subindustry": "Biotechnology" 246 | }, 247 | { 248 | "exchange": "NYSE", 249 | "symbol": "APH", 250 | "name":"Amphenol Corp A", 251 | "industry": "Industrials", 252 | "subindustry": "Electrical Components & Equipment" 253 | }, 254 | { 255 | "exchange": "NYSE", 256 | "symbol": "APC", 257 | "name":"Anadarko Petroleum|Anadarko Petroleum Corp", 258 | "industry": "Energy", 259 | "subindustry": "Oil & Gas Exploration & Production" 260 | }, 261 | { 262 | "exchange": "NASDAQ", 263 | "symbol": "ADI", 264 | "name":"Analog Devices|Analog Devices, Inc.", 265 | "industry": "Information Technology", 266 | "subindustry": "Semiconductors" 267 | }, 268 | { 269 | "exchange": "NYSE", 270 | "symbol": "AON", 271 | "name":"Aon plc", 272 | "industry": "Financials", 273 | "subindustry": "Insurance Brokers" 274 | }, 275 | { 276 | "exchange": "NYSE", 277 | "symbol": "APA", 278 | "name":"Apache Corporation", 279 | "industry": "Energy", 280 | "subindustry": "Oil & Gas Exploration & Production" 281 | }, 282 | { 283 | "exchange": "NYSE", 284 | "symbol": "AIV", 285 | "name":"Apartment Investment & Mgmt", 286 | "industry": "Financials", 287 | "subindustry": "REITs" 288 | }, 289 | { 290 | "exchange": "NASDAQ", 291 | "symbol": "AAPL", 292 | "name":"Apple Inc.", 293 | "industry": "Information Technology", 294 | "subindustry": "Computer Hardware" 295 | }, 296 | { 297 | "exchange": "NASDAQ", 298 | "symbol": "AMAT", 299 | "name":"Applied Materials Inc", 300 | "industry": "Information Technology", 301 | "subindustry": "Semiconductor Equipment" 302 | }, 303 | { 304 | "exchange": "NYSE", 305 | "symbol": "ADM", 306 | "name":"Archer-Daniels-Midland Co", 307 | "industry": "Consumer Staples", 308 | "subindustry": "Agricultural Products" 309 | }, 310 | { 311 | "exchange": "NYSE", 312 | "symbol": "AIZ", 313 | "name":"Assurant Inc", 314 | "industry": "Financials", 315 | "subindustry": "Multi-line Insurance" 316 | }, 317 | { 318 | "exchange": "NYSE", 319 | "symbol": "T", 320 | "name":"AT&T Inc", 321 | "industry": "Telecommunications Services", 322 | "subindustry": "Integrated Telecommunications Services" 323 | }, 324 | { 325 | "exchange": "NASDAQ", 326 | "symbol": "ADSK", 327 | "name":"Autodesk Inc", 328 | "industry": "Information Technology", 329 | "subindustry": "Application Software" 330 | }, 331 | { 332 | "exchange": "NASDAQ", 333 | "symbol": "ADP", 334 | "name":"Automatic Data Processing", 335 | "industry": "Information Technology", 336 | "subindustry": "Internet Software & Services" 337 | }, 338 | { 339 | "exchange": "NYSE", 340 | "symbol": "AN", 341 | "name":"AutoNation Inc", 342 | "industry": "Consumer Discretionary", 343 | "subindustry": "Specialty Stores" 344 | }, 345 | { 346 | "exchange": "NYSE", 347 | "symbol": "AZO", 348 | "name":"AutoZone Inc", 349 | "industry": "Consumer Discretionary", 350 | "subindustry": "Specialty Stores" 351 | }, 352 | { 353 | "exchange": "NASDAQ", 354 | "symbol": "AVGO", 355 | "name":"Avago Technologies", 356 | "industry": "Information Technology", 357 | "subindustry": "Semiconductors" 358 | }, 359 | { 360 | "exchange": "NYSE", 361 | "symbol": "AVB", 362 | "name":"AvalonBay Communities, Inc.", 363 | "industry": "Financials", 364 | "subindustry": "Residential REITs" 365 | }, 366 | { 367 | "exchange": "NYSE", 368 | "symbol": "AVY", 369 | "name":"Avery Dennison Corp", 370 | "industry": "Materials", 371 | "subindustry": "Paper Packaging" 372 | }, 373 | { 374 | "exchange": "NYSE", 375 | "symbol": "BHI", 376 | "name":"Baker Hughes Inc", 377 | "industry": "Energy", 378 | "subindustry": "Oil & Gas Equipment & Services" 379 | }, 380 | { 381 | "exchange": "NYSE", 382 | "symbol": "BLL", 383 | "name":"Ball Corp", 384 | "industry": "Materials", 385 | "subindustry": "Metal & Glass Containers" 386 | }, 387 | { 388 | "exchange": "NYSE", 389 | "symbol": "BAC", 390 | "name":"Bank of America Corp", 391 | "industry": "Financials", 392 | "subindustry": "Banks" 393 | }, 394 | { 395 | "exchange": "NYSE", 396 | "symbol": "BK", 397 | "name":"The Bank of New York Mellon Corp.", 398 | "industry": "Financials", 399 | "subindustry": "Banks" 400 | }, 401 | { 402 | "exchange": "NYSE", 403 | "symbol": "BCR", 404 | "name":"Bard (C.R.) Inc.", 405 | "industry": "Health Care", 406 | "subindustry": "Health Care Equipment & Services" 407 | }, 408 | { 409 | "exchange": "NYSE", 410 | "symbol": "BAX", 411 | "name":"Baxter International Inc.", 412 | "industry": "Health Care", 413 | "subindustry": "Health Care Equipment & Services" 414 | }, 415 | { 416 | "exchange": "NYSE", 417 | "symbol": "BBT", 418 | "name":"BB&T Corporation", 419 | "industry": "Financials", 420 | "subindustry": "Banks" 421 | }, 422 | { 423 | "exchange": "NYSE", 424 | "symbol": "BDX", 425 | "name":"Becton Dickinson", 426 | "industry": "Health Care", 427 | "subindustry": "Health Care Equipment & Services" 428 | }, 429 | { 430 | "exchange": "NASDAQ", 431 | "symbol": "BBBY", 432 | "name":"Bed Bath & Beyond", 433 | "industry": "Consumer Discretionary", 434 | "subindustry": "Specialty Stores" 435 | }, 436 | { 437 | "exchange": "NYSE", 438 | "symbol": "BRK.B", 439 | "name":"Berkshire Hathaway", 440 | "industry": "Financials", 441 | "subindustry": "Multi-Sector Holdings" 442 | }, 443 | { 444 | "exchange": "NYSE", 445 | "symbol": "BBY", 446 | "name":"Best Buy Co. Inc.", 447 | "industry": "Consumer Discretionary", 448 | "subindustry": "Computer & Electronics Retail" 449 | }, 450 | { 451 | "exchange": "NASDAQ", 452 | "symbol": "BIIB", 453 | "name":"BIOGEN IDEC Inc.", 454 | "industry": "Health Care", 455 | "subindustry": "Biotechnology" 456 | }, 457 | { 458 | "exchange": "NYSE", 459 | "symbol": "BLK", 460 | "name":"BlackRock", 461 | "industry": "Financials", 462 | "subindustry": "Asset Management & Custody Banks" 463 | }, 464 | { 465 | "exchange": "NYSE", 466 | "symbol": "HRB", 467 | "name":"Block H&R", 468 | "industry": "Financials", 469 | "subindustry": "Consumer Finance" 470 | }, 471 | { 472 | "exchange": "NYSE", 473 | "symbol": "BA", 474 | "name":"Boeing Company", 475 | "industry": "Industrials", 476 | "subindustry": "Aerospace & Defense" 477 | }, 478 | { 479 | "exchange": "NYSE", 480 | "symbol": "BWA", 481 | "name":"BorgWarner", 482 | "industry": "Consumer Discretionary", 483 | "subindustry": "Auto Parts & Equipment" 484 | }, 485 | { 486 | "exchange": "NYSE", 487 | "symbol": "BXP", 488 | "name":"Boston Properties", 489 | "industry": "Financials", 490 | "subindustry": "REITs" 491 | }, 492 | { 493 | "exchange": "NYSE", 494 | "symbol": "BSX", 495 | "name":"Boston Scientific", 496 | "industry": "Health Care", 497 | "subindustry": "Health Care Equipment & Services" 498 | }, 499 | { 500 | "exchange": "NYSE", 501 | "symbol": "BMY", 502 | "name":"Bristol-Myers Squibb", 503 | "industry": "Health Care", 504 | "subindustry": "Health Care Distributors & Services" 505 | }, 506 | { 507 | "exchange": "NASDAQ", 508 | "symbol": "BRCM", 509 | "name":"Broadcom Corporation", 510 | "industry": "Information Technology", 511 | "subindustry": "Semiconductors" 512 | }, 513 | { 514 | "exchange": "NYSE", 515 | "symbol": "BF.B", 516 | "name":"Brown-Forman Corporation", 517 | "industry": "Consumer Staples", 518 | "subindustry": "Distillers & Vintners" 519 | }, 520 | { 521 | "exchange": "NASDAQ", 522 | "symbol": "CHRW", 523 | "name":"C. H. Robinson Worldwide", 524 | "industry": "Industrials", 525 | "subindustry": "Air Freight & Logistics" 526 | }, 527 | { 528 | "exchange": "NASDAQ", 529 | "symbol": "CA", 530 | "name":"CA, Inc.", 531 | "industry": "Information Technology", 532 | "subindustry": "Systems Software" 533 | }, 534 | { 535 | "exchange": "NYSE", 536 | "symbol": "CVC", 537 | "name":"Cablevision|Cablevision Systems Corp.", 538 | "industry": "Consumer Discretionary", 539 | "subindustry": "Broadcasting & Cable TV" 540 | }, 541 | { 542 | "exchange": "NYSE", 543 | "symbol": "COG", 544 | "name":"Cabot Oil & Gas", 545 | "industry": "Energy", 546 | "subindustry": "Oil & Gas Exploration & Production" 547 | }, 548 | { 549 | "exchange": "NYSE", 550 | "symbol": "CAM", 551 | "name":"Cameron International Corp.", 552 | "industry": "Energy", 553 | "subindustry": "Oil & Gas Equipment & Services" 554 | }, 555 | { 556 | "exchange": "NYSE", 557 | "symbol": "CPB", 558 | "name":"Campbell Soup", 559 | "industry": "Consumer Staples", 560 | "subindustry": "Packaged Foods & Meats" 561 | }, 562 | { 563 | "exchange": "NYSE", 564 | "symbol": "COF", 565 | "name":"Capital One Financial", 566 | "industry": "Financials", 567 | "subindustry": "Consumer Finance" 568 | }, 569 | { 570 | "exchange": "NYSE", 571 | "symbol": "CAH", 572 | "name":"Cardinal Health Inc.", 573 | "industry": "Health Care", 574 | "subindustry": "Health Care Distributors & Services" 575 | }, 576 | { 577 | "exchange": "NASDAQ", 578 | "symbol": "HSIC", 579 | "name":"Henry Schein", 580 | "industry": "Health Care", 581 | "subindustry": "Health Care Distributors" 582 | }, 583 | { 584 | "exchange": "NYSE", 585 | "symbol": "KMX", 586 | "name":"Carmax Inc", 587 | "industry": "Consumer Discretionary", 588 | "subindustry": "Specialty Stores" 589 | }, 590 | { 591 | "exchange": "NYSE", 592 | "symbol": "CCL", 593 | "name":"Carnival Corp.", 594 | "industry": "Consumer Discretionary", 595 | "subindustry": "Hotels, Resorts & Cruise Lines" 596 | }, 597 | { 598 | "exchange": "NYSE", 599 | "symbol": "CAT", 600 | "name":"Caterpillar Inc.", 601 | "industry": "Industrials", 602 | "subindustry": "Construction & Farm Machinery & Heavy Trucks" 603 | }, 604 | { 605 | "exchange": "NYSE", 606 | "symbol": "CBG", 607 | "name":"CBRE Group", 608 | "industry": "Financials", 609 | "subindustry": "Real Estate Services" 610 | }, 611 | { 612 | "exchange": "NYSE", 613 | "symbol": "CBS", 614 | "name":"CBS Corp.", 615 | "industry": "Consumer Discretionary", 616 | "subindustry": "Broadcasting & Cable TV" 617 | }, 618 | { 619 | "exchange": "NASDAQ", 620 | "symbol": "CELG", 621 | "name":"Celgene Corp.", 622 | "industry": "Health Care", 623 | "subindustry": "Biotechnology" 624 | }, 625 | { 626 | "exchange": "NYSE", 627 | "symbol": "CNP", 628 | "name":"CenterPoint Energy", 629 | "industry": "Utilities", 630 | "subindustry": "MultiUtilities" 631 | }, 632 | { 633 | "exchange": "NYSE", 634 | "symbol": "CTL", 635 | "name":"CenturyLink Inc", 636 | "industry": "Telecommunications Services", 637 | "subindustry": "Integrated Telecommunications Services" 638 | }, 639 | { 640 | "exchange": "NASDAQ", 641 | "symbol": "CERN", 642 | "name":"Cerner", 643 | "industry": "Health Care", 644 | "subindustry": "Health Care Distributors & Services" 645 | }, 646 | { 647 | "exchange": "NYSE", 648 | "symbol": "CF", 649 | "name":"CF Industries Holdings Inc", 650 | "industry": "Materials", 651 | "subindustry": "Fertilizers & Agricultural Chemicals" 652 | }, 653 | { 654 | "exchange": "NYSE", 655 | "symbol": "SCHW", 656 | "name":"Charles Schwab Corporation", 657 | "industry": "Financials", 658 | "subindustry": "Investment Banking & Brokerage" 659 | }, 660 | { 661 | "exchange": "NYSE", 662 | "symbol": "CHK", 663 | "name":"Chesapeake Energy", 664 | "industry": "Energy", 665 | "subindustry": "Integrated Oil & Gas" 666 | }, 667 | { 668 | "exchange": "NYSE", 669 | "symbol": "CVX", 670 | "name":"Chevron Corp.", 671 | "industry": "Energy", 672 | "subindustry": "Integrated Oil & Gas" 673 | }, 674 | { 675 | "exchange": "NYSE", 676 | "symbol": "CMG", 677 | "name":"Chipotle Mexican Grill", 678 | "industry": "Consumer Discretionary", 679 | "subindustry": "Restaurants" 680 | }, 681 | { 682 | "exchange": "NYSE", 683 | "symbol": "CB", 684 | "name":"Chubb Corp.", 685 | "industry": "Financials", 686 | "subindustry": "Property & Casualty Insurance" 687 | }, 688 | { 689 | "exchange": "NYSE", 690 | "symbol": "CI", 691 | "name":"CIGNA Corp.", 692 | "industry": "Health Care", 693 | "subindustry": "Managed Health Care" 694 | }, 695 | { 696 | "exchange": "NYSE", 697 | "symbol": "XEC", 698 | "name":"Cimarex Energy", 699 | "industry": "Energy", 700 | "subindustry": "Oil & Gas Exploration & Production" 701 | }, 702 | { 703 | "exchange": "NASDAQ", 704 | "symbol": "CINF", 705 | "name":"Cincinnati Financial", 706 | "industry": "Financials", 707 | "subindustry": "Property & Casualty Insurance" 708 | }, 709 | { 710 | "exchange": "NASDAQ", 711 | "symbol": "CTAS", 712 | "name":"Cintas Corporation", 713 | "industry": "Industrials", 714 | "subindustry": "Diversified Support Services" 715 | }, 716 | { 717 | "exchange": "NASDAQ", 718 | "symbol": "CSCO", 719 | "name":"Cisco Systems", 720 | "industry": "Information Technology", 721 | "subindustry": "Networking Equipment" 722 | }, 723 | { 724 | "exchange": "NYSE", 725 | "symbol": "C", 726 | "name":"Citigroup Inc.", 727 | "industry": "Financials", 728 | "subindustry": "Banks" 729 | }, 730 | { 731 | "exchange": "NASDAQ", 732 | "symbol": "CTXS", 733 | "name":"Citrix Systems", 734 | "industry": "Information Technology", 735 | "subindustry": "Internet Software & Services" 736 | }, 737 | { 738 | "exchange": "NYSE", 739 | "symbol": "CLX", 740 | "name":"The Clorox Company", 741 | "industry": "Consumer Staples", 742 | "subindustry": "Household Products" 743 | }, 744 | { 745 | "exchange": "NASDAQ", 746 | "symbol": "CME", 747 | "name":"CME Group Inc.", 748 | "industry": "Financials", 749 | "subindustry": "Diversified Financial Services" 750 | }, 751 | { 752 | "exchange": "NYSE", 753 | "symbol": "CMS", 754 | "name":"CMS Energy", 755 | "industry": "Utilities", 756 | "subindustry": "MultiUtilities" 757 | }, 758 | { 759 | "exchange": "NYSE", 760 | "symbol": "COH", 761 | "name":"Coach Inc.", 762 | "industry": "Consumer Discretionary", 763 | "subindustry": "Apparel, Accessories & Luxury Goods" 764 | }, 765 | { 766 | "exchange": "NYSE", 767 | "symbol": "KO", 768 | "name":"The Coca Cola Company", 769 | "industry": "Consumer Staples", 770 | "subindustry": "Soft Drinks" 771 | }, 772 | { 773 | "exchange": "NYSE", 774 | "symbol": "CCE", 775 | "name":"Coca-Cola Enterprises", 776 | "industry": "Consumer Staples", 777 | "subindustry": "Soft Drinks" 778 | }, 779 | { 780 | "exchange": "NASDAQ", 781 | "symbol": "CTSH", 782 | "name":"Cognizant Technology Solutions", 783 | "industry": "Information Technology", 784 | "subindustry": "IT Consulting & Services" 785 | }, 786 | { 787 | "exchange": "NYSE", 788 | "symbol": "CL", 789 | "name":"Colgate-Palmolive", 790 | "industry": "Consumer Staples", 791 | "subindustry": "Household Products" 792 | }, 793 | { 794 | "exchange": "NASDAQ", 795 | "symbol": "CMCSA", 796 | "name":"Comcast Corp.", 797 | "industry": "Consumer Discretionary", 798 | "subindustry": "Broadcasting & Cable TV" 799 | }, 800 | { 801 | "exchange": "NYSE", 802 | "symbol": "CMA", 803 | "name":"Comerica Inc.", 804 | "industry": "Financials", 805 | "subindustry": "Banks" 806 | }, 807 | { 808 | "exchange": "NYSE", 809 | "symbol": "CSC", 810 | "name":"Computer Sciences Corp.", 811 | "industry": "Information Technology", 812 | "subindustry": "IT Consulting & Services" 813 | }, 814 | { 815 | "exchange": "NYSE", 816 | "symbol": "CAG", 817 | "name":"ConAgra Foods Inc.", 818 | "industry": "Consumer Staples", 819 | "subindustry": "Packaged Foods & Meats" 820 | }, 821 | { 822 | "exchange": "NYSE", 823 | "symbol": "COP", 824 | "name":"ConocoPhillips", 825 | "industry": "Energy", 826 | "subindustry": "Oil & Gas Exploration & Production" 827 | }, 828 | { 829 | "exchange": "NYSE", 830 | "symbol": "CNX", 831 | "name":"CONSOL Energy Inc.", 832 | "industry": "Energy", 833 | "subindustry": "Coal & Consumable Fuels" 834 | }, 835 | { 836 | "exchange": "NYSE", 837 | "symbol": "ED", 838 | "name":"Consolidated Edison", 839 | "industry": "Utilities", 840 | "subindustry": "Electric Utilities" 841 | }, 842 | { 843 | "exchange": "NYSE", 844 | "symbol": "STZ", 845 | "name":"Constellation Brands", 846 | "industry": "Consumer Staples", 847 | "subindustry": "Distillers & Vintners" 848 | }, 849 | { 850 | "exchange": "NYSE", 851 | "symbol": "GLW", 852 | "name":"Corning Inc.", 853 | "industry": "Industrials", 854 | "subindustry": "Construction & Engineering" 855 | }, 856 | { 857 | "exchange": "NASDAQ", 858 | "symbol": "COST", 859 | "name":"Costco Co.", 860 | "industry": "Consumer Staples", 861 | "subindustry": "Hypermarkets & Super Centers" 862 | }, 863 | { 864 | "exchange": "NYSE", 865 | "symbol": "CCI", 866 | "name":"Crown Castle International Corp.", 867 | "industry": "Financials", 868 | "subindustry": "REITs" 869 | }, 870 | { 871 | "exchange": "NYSE", 872 | "symbol": "CSX", 873 | "name":"CSX Corp.", 874 | "industry": "Industrials", 875 | "subindustry": "Railroads" 876 | }, 877 | { 878 | "exchange": "NYSE", 879 | "symbol": "CMI", 880 | "name":"Cummins Inc.", 881 | "industry": "Industrials", 882 | "subindustry": "Industrial Machinery" 883 | }, 884 | { 885 | "exchange": "NYSE", 886 | "symbol": "CVS", 887 | "name":"CVS Caremark Corp.", 888 | "industry": "Consumer Staples", 889 | "subindustry": "Drug Retail" 890 | }, 891 | { 892 | "exchange": "NYSE", 893 | "symbol": "DHI", 894 | "name":"D. R. Horton", 895 | "industry": "Consumer Discretionary", 896 | "subindustry": "Homebuilding" 897 | }, 898 | { 899 | "exchange": "NYSE", 900 | "symbol": "DHR", 901 | "name":"Danaher Corp.", 902 | "industry": "Industrials", 903 | "subindustry": "Industrial Machinery" 904 | }, 905 | { 906 | "exchange": "NYSE", 907 | "symbol": "DRI", 908 | "name":"Darden Restaurants", 909 | "industry": "Consumer Discretionary", 910 | "subindustry": "Restaurants" 911 | }, 912 | { 913 | "exchange": "NYSE", 914 | "symbol": "DVA", 915 | "name":"DaVita Inc.", 916 | "industry": "Health Care", 917 | "subindustry": "Health Care Facilities" 918 | }, 919 | { 920 | "exchange": "NYSE", 921 | "symbol": "DE", 922 | "name":"Deere & Co.", 923 | "industry": "Industrials", 924 | "subindustry": "Construction & Farm Machinery & Heavy Trucks" 925 | }, 926 | { 927 | "exchange": "NYSE", 928 | "symbol": "DLPH", 929 | "name":"Delphi Automotive", 930 | "industry": "Consumer Discretionary", 931 | "subindustry": "Auto Parts & Equipment" 932 | }, 933 | { 934 | "exchange": "NYSE", 935 | "symbol": "DAL", 936 | "name":"Delta Airlines|Delta Air Lines", 937 | "industry": "Industrials", 938 | "subindustry": "Airlines" 939 | }, 940 | { 941 | "exchange": "NASDAQ", 942 | "symbol": "XRAY", 943 | "name":"Dentsply International", 944 | "industry": "Health Care", 945 | "subindustry": "Health Care Supplies" 946 | }, 947 | { 948 | "exchange": "NYSE", 949 | "symbol": "DVN", 950 | "name":"Devon Energy Corp.", 951 | "industry": "Energy", 952 | "subindustry": "Oil & Gas Exploration & Production" 953 | }, 954 | { 955 | "exchange": "NYSE", 956 | "symbol": "DO", 957 | "name":"Diamond Offshore Drilling", 958 | "industry": "Energy", 959 | "subindustry": "Oil & Gas Drilling" 960 | }, 961 | { 962 | "exchange": "NASDAQ", 963 | "symbol": "DTV", 964 | "name":"DirecTV", 965 | "industry": "Consumer Discretionary", 966 | "subindustry": "Broadcasting & Cable TV" 967 | }, 968 | { 969 | "exchange": "NYSE", 970 | "symbol": "DFS", 971 | "name":"Discover Financial|Discover Financial Services", 972 | "industry": "Financials", 973 | "subindustry": "Consumer Finance" 974 | }, 975 | { 976 | "exchange": "NASDAQ", 977 | "symbol": "DISCA", 978 | "name":"Discovery Communications-A", 979 | "industry": "Consumer Discretionary", 980 | "subindustry": "Broadcasting & Cable TV" 981 | }, 982 | { 983 | "exchange": "NASDAQ", 984 | "symbol": "DISCK", 985 | "name":"Discovery Communications-C", 986 | "industry": "Consumer Discretionary", 987 | "subindustry": "Broadcasting & Cable TV" 988 | }, 989 | { 990 | "exchange": "NYSE", 991 | "symbol": "DG", 992 | "name":"Dollar General", 993 | "industry": "Consumer Discretionary", 994 | "subindustry": "General Merchandise Stores" 995 | }, 996 | { 997 | "exchange": "NASDAQ", 998 | "symbol": "DLTR", 999 | "name":"Dollar Tree", 1000 | "industry": "Consumer Discretionary", 1001 | "subindustry": "General Merchandise Stores" 1002 | }, 1003 | { 1004 | "exchange": "NYSE", 1005 | "symbol": "D", 1006 | "name":"Dominion Resources", 1007 | "industry": "Utilities", 1008 | "subindustry": "Electric Utilities" 1009 | }, 1010 | { 1011 | "exchange": "NYSE", 1012 | "symbol": "DOV", 1013 | "name":"Dover Corp.", 1014 | "industry": "Industrials", 1015 | "subindustry": "Industrial Machinery" 1016 | }, 1017 | { 1018 | "exchange": "NYSE", 1019 | "symbol": "DOW", 1020 | "name":"Dow Chemical", 1021 | "industry": "Materials", 1022 | "subindustry": "Diversified Chemicals" 1023 | }, 1024 | { 1025 | "exchange": "NYSE", 1026 | "symbol": "DPS", 1027 | "name":"Dr Pepper Snapple Group", 1028 | "industry": "Consumer Staples", 1029 | "subindustry": "Soft Drinks" 1030 | }, 1031 | { 1032 | "exchange": "NYSE", 1033 | "symbol": "DTE", 1034 | "name":"DTE Energy Co.", 1035 | "industry": "Utilities", 1036 | "subindustry": "MultiUtilities" 1037 | }, 1038 | { 1039 | "exchange": "NYSE", 1040 | "symbol": "DD", 1041 | "name":"Du Pont (E.I.)", 1042 | "industry": "Materials", 1043 | "subindustry": "Diversified Chemicals" 1044 | }, 1045 | { 1046 | "exchange": "NYSE", 1047 | "symbol": "DUK", 1048 | "name":"Duke Energy", 1049 | "industry": "Utilities", 1050 | "subindustry": "Electric Utilities" 1051 | }, 1052 | { 1053 | "exchange": "NYSE", 1054 | "symbol": "DNB", 1055 | "name":"Dun & Bradstreet", 1056 | "industry": "Industrials", 1057 | "subindustry": "Data Processing Services" 1058 | }, 1059 | { 1060 | "exchange": "NASDAQ", 1061 | "symbol": "ETFC", 1062 | "name":"E*Trade", 1063 | "industry": "Financials", 1064 | "subindustry": "Investment Banking & Brokerage" 1065 | }, 1066 | { 1067 | "exchange": "NYSE", 1068 | "symbol": "EMN", 1069 | "name":"Eastman Chemical", 1070 | "industry": "Materials", 1071 | "subindustry": "Diversified Chemicals" 1072 | }, 1073 | { 1074 | "exchange": "NYSE", 1075 | "symbol": "ETN", 1076 | "name":"Eaton Corporation", 1077 | "industry": "Industrials", 1078 | "subindustry": "Industrial Conglomerates" 1079 | }, 1080 | { 1081 | "exchange": "NASDAQ", 1082 | "symbol": "EBAY", 1083 | "name":"eBay Inc.", 1084 | "industry": "Information Technology", 1085 | "subindustry": "Internet Software & Services" 1086 | }, 1087 | { 1088 | "exchange": "NYSE", 1089 | "symbol": "ECL", 1090 | "name":"Ecolab Inc.", 1091 | "industry": "Materials", 1092 | "subindustry": "Specialty Chemicals" 1093 | }, 1094 | { 1095 | "exchange": "NYSE", 1096 | "symbol": "EIX", 1097 | "name":"Edison Int'l", 1098 | "industry": "Utilities", 1099 | "subindustry": "Electric Utilities" 1100 | }, 1101 | { 1102 | "exchange": "NYSE", 1103 | "symbol": "EW", 1104 | "name":"Edwards Lifesciences", 1105 | "industry": "Health Care", 1106 | "subindustry": "Health Care Equipment & Services" 1107 | }, 1108 | { 1109 | "exchange": "NASDAQ", 1110 | "symbol": "EA", 1111 | "name":"Electronic Arts", 1112 | "industry": "Information Technology", 1113 | "subindustry": "Home Entertainment Software" 1114 | }, 1115 | { 1116 | "exchange": "NYSE", 1117 | "symbol": "EMC", 1118 | "name":"EMC Corp.", 1119 | "industry": "Information Technology", 1120 | "subindustry": "IT Consulting & Services" 1121 | }, 1122 | { 1123 | "exchange": "NYSE", 1124 | "symbol": "EMR", 1125 | "name":"Emerson Electric Company", 1126 | "industry": "Industrials", 1127 | "subindustry": "Industrial Conglomerates" 1128 | }, 1129 | { 1130 | "exchange": "NASDAQ", 1131 | "symbol": "ENDP", 1132 | "name":"Endo International", 1133 | "industry": "Health Care", 1134 | "subindustry": "Pharmaceuticals" 1135 | }, 1136 | { 1137 | "exchange": "NYSE", 1138 | "symbol": "ESV", 1139 | "name":"Ensco plc", 1140 | "industry": "Energy", 1141 | "subindustry": "Oil & Gas Drilling" 1142 | }, 1143 | { 1144 | "exchange": "NYSE", 1145 | "symbol": "ETR", 1146 | "name":"Entergy Corp.", 1147 | "industry": "Utilities", 1148 | "subindustry": "Electric Utilities" 1149 | }, 1150 | { 1151 | "exchange": "NYSE", 1152 | "symbol": "EOG", 1153 | "name":"EOG Resources", 1154 | "industry": "Energy", 1155 | "subindustry": "Oil & Gas Exploration & Production" 1156 | }, 1157 | { 1158 | "exchange": "NYSE", 1159 | "symbol": "EQT", 1160 | "name":"EQT Corporation", 1161 | "industry": "Energy", 1162 | "subindustry": "Oil & Gas Exploration & Production" 1163 | }, 1164 | { 1165 | "exchange": "NYSE", 1166 | "symbol": "EFX", 1167 | "name":"Equifax Inc.", 1168 | "industry": "Financials", 1169 | "subindustry": "Diversified Financial Services" 1170 | }, 1171 | { 1172 | "exchange": "NASDAQ", 1173 | "symbol": "EQIX", 1174 | "name":"Equinix", 1175 | "industry": "Information Technology", 1176 | "subindustry": "Internet Software & Services" 1177 | }, 1178 | { 1179 | "exchange": "NYSE", 1180 | "symbol": "EQR", 1181 | "name":"Equity Residential", 1182 | "industry": "Financials", 1183 | "subindustry": "REITs" 1184 | }, 1185 | { 1186 | "exchange": "NYSE", 1187 | "symbol": "ESS", 1188 | "name":"Essex Property Trust Inc", 1189 | "industry": "Financials", 1190 | "subindustry": "Residential REITs" 1191 | }, 1192 | { 1193 | "exchange": "NYSE", 1194 | "symbol": "EL", 1195 | "name":"Estee Lauder Cos.", 1196 | "industry": "Consumer Staples", 1197 | "subindustry": "Personal Products" 1198 | }, 1199 | { 1200 | "exchange": "NYSE", 1201 | "symbol": "ES", 1202 | "name":"Eversource Energy", 1203 | "industry": "Utilities", 1204 | "subindustry": "MultiUtilities" 1205 | }, 1206 | { 1207 | "exchange": "NYSE", 1208 | "symbol": "EXC", 1209 | "name":"Exelon Corp.", 1210 | "industry": "Utilities", 1211 | "subindustry": "MultiUtilities" 1212 | }, 1213 | { 1214 | "exchange": "NASDAQ", 1215 | "symbol": "EXPE", 1216 | "name":"Expedia Inc.", 1217 | "industry": "Consumer Discretionary", 1218 | "subindustry": "Hotels, Resorts & Cruise Lines" 1219 | }, 1220 | { 1221 | "exchange": "NASDAQ", 1222 | "symbol": "EXPD", 1223 | "name":"Expeditors Int'l", 1224 | "industry": "Industrials", 1225 | "subindustry": "Air Freight & Logistics" 1226 | }, 1227 | { 1228 | "exchange": "NASDAQ", 1229 | "symbol": "ESRX", 1230 | "name":"Express Scripts", 1231 | "industry": "Health Care", 1232 | "subindustry": "Health Care Distributors & Services" 1233 | }, 1234 | { 1235 | "exchange": "NYSE", 1236 | "symbol": "XOM", 1237 | "name":"Exxon Mobil Corp.", 1238 | "industry": "Energy", 1239 | "subindustry": "Integrated Oil & Gas" 1240 | }, 1241 | { 1242 | "exchange": "NASDAQ", 1243 | "symbol": "FFIV", 1244 | "name":"F5 Networks", 1245 | "industry": "Information Technology", 1246 | "subindustry": "Networking Equipment" 1247 | }, 1248 | { 1249 | "exchange": "NASDAQ", 1250 | "symbol": "FB", 1251 | "name":"Facebook", 1252 | "industry": "Information Technology", 1253 | "subindustry": "Internet Software & Services" 1254 | }, 1255 | { 1256 | "exchange": "NYSE", 1257 | "symbol": "FDO", 1258 | "name":"Family Dollar Stores", 1259 | "industry": "Consumer Discretionary", 1260 | "subindustry": "General Merchandise Stores" 1261 | }, 1262 | { 1263 | "exchange": "NASDAQ", 1264 | "symbol": "FAST", 1265 | "name":"Fastenal Co", 1266 | "industry": "Industrials", 1267 | "subindustry": "Building Products" 1268 | }, 1269 | { 1270 | "exchange": "NYSE", 1271 | "symbol": "FDX", 1272 | "name":"FedEx Corporation", 1273 | "industry": "Industrials", 1274 | "subindustry": "Air Freight & Logistics" 1275 | }, 1276 | { 1277 | "exchange": "NYSE", 1278 | "symbol": "FIS", 1279 | "name":"Fidelity National Information Services", 1280 | "industry": "Information Technology", 1281 | "subindustry": "Internet Software & Services" 1282 | }, 1283 | { 1284 | "exchange": "NASDAQ", 1285 | "symbol": "FITB", 1286 | "name":"Fifth Third Bancorp", 1287 | "industry": "Financials", 1288 | "subindustry": "Banks" 1289 | }, 1290 | { 1291 | "exchange": "NASDAQ", 1292 | "symbol": "FSLR", 1293 | "name":"First Solar Inc", 1294 | "industry": "Information Technology", 1295 | "subindustry": "Semiconductors" 1296 | }, 1297 | { 1298 | "exchange": "NYSE", 1299 | "symbol": "FE", 1300 | "name":"FirstEnergy Corp", 1301 | "industry": "Utilities", 1302 | "subindustry": "Electric Utilities" 1303 | }, 1304 | { 1305 | "exchange": "NASDAQ", 1306 | "symbol": "FISV", 1307 | "name":"Fiserv Inc", 1308 | "industry": "Information Technology", 1309 | "subindustry": "Internet Software & Services" 1310 | }, 1311 | { 1312 | "exchange": "NASDAQ", 1313 | "symbol": "FLIR", 1314 | "name":"FLIR Systems", 1315 | "industry": "Industrials", 1316 | "subindustry": "Aerospace & Defense" 1317 | }, 1318 | { 1319 | "exchange": "NYSE", 1320 | "symbol": "FLS", 1321 | "name":"Flowserve Corporation", 1322 | "industry": "Industrials", 1323 | "subindustry": "Industrial Machinery" 1324 | }, 1325 | { 1326 | "exchange": "NYSE", 1327 | "symbol": "FLR", 1328 | "name":"Fluor Corp.", 1329 | "industry": "Industrials", 1330 | "subindustry": "Diversified Commercial Services" 1331 | }, 1332 | { 1333 | "exchange": "NYSE", 1334 | "symbol": "FMC", 1335 | "name":"FMC Corporation", 1336 | "industry": "Materials", 1337 | "subindustry": "Diversified Chemicals" 1338 | }, 1339 | { 1340 | "exchange": "NYSE", 1341 | "symbol": "FTI", 1342 | "name":"FMC Technologies Inc.", 1343 | "industry": "Energy", 1344 | "subindustry": "Oil & Gas Equipment & Services" 1345 | }, 1346 | { 1347 | "exchange": "NYSE", 1348 | "symbol": "F", 1349 | "name":"Ford Motor", 1350 | "industry": "Consumer Discretionary", 1351 | "subindustry": "Automobile Manufacturers" 1352 | }, 1353 | { 1354 | "exchange": "NASDAQ", 1355 | "symbol": "FOSL", 1356 | "name":"Fossil, Inc.", 1357 | "industry": "Consumer Discretionary", 1358 | "subindustry": "Apparel, Accessories & Luxury Goods" 1359 | }, 1360 | { 1361 | "exchange": "NYSE", 1362 | "symbol": "BEN", 1363 | "name":"Franklin Resources", 1364 | "industry": "Financials", 1365 | "subindustry": "Asset Management & Custody Banks" 1366 | }, 1367 | { 1368 | "exchange": "NYSE", 1369 | "symbol": "FCX", 1370 | "name":"Freeport-McMoran Cp & Gld", 1371 | "industry": "Materials", 1372 | "subindustry": "Diversified Metals & Mining" 1373 | }, 1374 | { 1375 | "exchange": "NASDAQ", 1376 | "symbol": "FTR", 1377 | "name":"Frontier Communications", 1378 | "industry": "Telecommunications Services", 1379 | "subindustry": "Integrated Telecommunications Services" 1380 | }, 1381 | { 1382 | "exchange": "NYSE", 1383 | "symbol": "GME", 1384 | "name":"GameStop Corp.", 1385 | "industry": "Consumer Discretionary", 1386 | "subindustry": "Computer & Electronics Retail" 1387 | }, 1388 | { 1389 | "exchange": "NYSE", 1390 | "symbol": "GCI", 1391 | "name":"Gannett Co.", 1392 | "industry": "Consumer Discretionary", 1393 | "subindustry": "Publishing" 1394 | }, 1395 | { 1396 | "exchange": "NYSE", 1397 | "symbol": "GPS", 1398 | "name":"Gap (The)", 1399 | "industry": "Consumer Discretionary", 1400 | "subindustry": "Apparel Retail" 1401 | }, 1402 | { 1403 | "exchange": "NASDAQ", 1404 | "symbol": "GRMN", 1405 | "name":"Garmin Ltd.", 1406 | "industry": "Consumer Discretionary", 1407 | "subindustry": "Consumer Electronics" 1408 | }, 1409 | { 1410 | "exchange": "NYSE", 1411 | "symbol": "GD", 1412 | "name":"General Dynamics", 1413 | "industry": "Industrials", 1414 | "subindustry": "Aerospace & Defense" 1415 | }, 1416 | { 1417 | "exchange": "NYSE", 1418 | "symbol": "GE", 1419 | "name":"General Electric", 1420 | "industry": "Industrials", 1421 | "subindustry": "Industrial Conglomerates" 1422 | }, 1423 | { 1424 | "exchange": "NYSE", 1425 | "symbol": "GGP", 1426 | "name":"General Growth Properties Inc.", 1427 | "industry": "Financials", 1428 | "subindustry": "REITs" 1429 | }, 1430 | { 1431 | "exchange": "NYSE", 1432 | "symbol": "GIS", 1433 | "name":"General Mills", 1434 | "industry": "Consumer Staples", 1435 | "subindustry": "Packaged Foods & Meats" 1436 | }, 1437 | { 1438 | "exchange": "NYSE", 1439 | "symbol": "GM", 1440 | "name":"General Motors", 1441 | "industry": "Consumer Discretionary", 1442 | "subindustry": "Automobile Manufacturers" 1443 | }, 1444 | { 1445 | "exchange": "NYSE", 1446 | "symbol": "GPC", 1447 | "name":"Genuine Parts", 1448 | "industry": "Consumer Discretionary", 1449 | "subindustry": "Specialty Stores" 1450 | }, 1451 | { 1452 | "exchange": "NYSE", 1453 | "symbol": "GNW", 1454 | "name":"Genworth Financial Inc.", 1455 | "industry": "Financials", 1456 | "subindustry": "Life & Health Insurance" 1457 | }, 1458 | { 1459 | "exchange": "NASDAQ", 1460 | "symbol": "GILD", 1461 | "name":"Gilead Sciences", 1462 | "industry": "Health Care", 1463 | "subindustry": "Biotechnology" 1464 | }, 1465 | { 1466 | "exchange": "NYSE", 1467 | "symbol": "GS", 1468 | "name":"Goldman Sachs Group", 1469 | "industry": "Financials", 1470 | "subindustry": "Investment Banking & Brokerage" 1471 | }, 1472 | { 1473 | "exchange": "NASDAQ", 1474 | "symbol": "GT", 1475 | "name":"Goodyear Tire & Rubber", 1476 | "industry": "Consumer Discretionary", 1477 | "subindustry": "Tires & Rubber" 1478 | }, 1479 | { 1480 | "exchange": "NASDAQ", 1481 | "symbol": "GOOGL", 1482 | "name":"Google Inc Class A", 1483 | "industry": "Information Technology", 1484 | "subindustry": "Internet Software & Services" 1485 | }, 1486 | { 1487 | "exchange": "NASDAQ", 1488 | "symbol": "GOOG", 1489 | "name":"Google Inc Class C", 1490 | "industry": "Information Technology", 1491 | "subindustry": "Internet Software & Services" 1492 | }, 1493 | { 1494 | "exchange": "NYSE", 1495 | "symbol": "GWW", 1496 | "name":"Grainger (W.W.) Inc.", 1497 | "industry": "Industrials", 1498 | "subindustry": "Industrial Materials" 1499 | }, 1500 | { 1501 | "exchange": "NYSE", 1502 | "symbol": "HAL", 1503 | "name":"Halliburton Co.", 1504 | "industry": "Energy", 1505 | "subindustry": "Oil & Gas Equipment & Services" 1506 | }, 1507 | { 1508 | "exchange": "NYSE", 1509 | "symbol": "HBI", 1510 | "name":"Hanesbrands Inc", 1511 | "industry": "Consumer Discretionary", 1512 | "subindustry": "Apparel, Accessories & Luxury Goods" 1513 | }, 1514 | { 1515 | "exchange": "NYSE", 1516 | "symbol": "HOG", 1517 | "name":"Harley-Davidson", 1518 | "industry": "Consumer Discretionary", 1519 | "subindustry": "Motorcycle Manufacturers" 1520 | }, 1521 | { 1522 | "exchange": "NYSE", 1523 | "symbol": "HAR", 1524 | "name":"Harman Int'l Industries", 1525 | "industry": "Consumer Discretionary", 1526 | "subindustry": "Consumer Electronics" 1527 | }, 1528 | { 1529 | "exchange": "NYSE", 1530 | "symbol": "HRS", 1531 | "name":"Harris Corporation", 1532 | "industry": "Information Technology", 1533 | "subindustry": "Telecommunications Equipment" 1534 | }, 1535 | { 1536 | "exchange": "NYSE", 1537 | "symbol": "HIG", 1538 | "name":"Hartford Financial Svc.Gp.", 1539 | "industry": "Financials", 1540 | "subindustry": "Property & Casualty Insurance" 1541 | }, 1542 | { 1543 | "exchange": "NASDAQ", 1544 | "symbol": "HAS", 1545 | "name":"Hasbro Inc.", 1546 | "industry": "Consumer Discretionary", 1547 | "subindustry": "Leisure Products" 1548 | }, 1549 | { 1550 | "exchange": "NYSE", 1551 | "symbol": "HCA", 1552 | "name":"HCA Holdings", 1553 | "industry": "Health Care", 1554 | "subindustry": "Health Care Facilities" 1555 | }, 1556 | { 1557 | "exchange": "NYSE", 1558 | "symbol": "HCP", 1559 | "name":"HCP Inc.", 1560 | "industry": "Financials", 1561 | "subindustry": "REITs" 1562 | }, 1563 | { 1564 | "exchange": "NYSE", 1565 | "symbol": "HCN", 1566 | "name":"Health Care REIT, Inc.", 1567 | "industry": "Financials", 1568 | "subindustry": "REITs" 1569 | }, 1570 | { 1571 | "exchange": "NYSE", 1572 | "symbol": "HP", 1573 | "name":"Helmerich & Payne", 1574 | "industry": "Energy", 1575 | "subindustry": "Oil & Gas Drilling" 1576 | }, 1577 | { 1578 | "exchange": "NYSE", 1579 | "symbol": "HES", 1580 | "name":"Hess Corporation", 1581 | "industry": "Energy", 1582 | "subindustry": "Integrated Oil & Gas" 1583 | }, 1584 | { 1585 | "exchange": "NYSE", 1586 | "symbol": "HPQ", 1587 | "name":"Hewlett-Packard", 1588 | "industry": "Information Technology", 1589 | "subindustry": "Computer Hardware" 1590 | }, 1591 | { 1592 | "exchange": "NYSE", 1593 | "symbol": "HD", 1594 | "name":"Home Depot", 1595 | "industry": "Consumer Discretionary", 1596 | "subindustry": "Home Improvement Retail" 1597 | }, 1598 | { 1599 | "exchange": "NYSE", 1600 | "symbol": "HON", 1601 | "name":"Honeywell Int'l Inc.", 1602 | "industry": "Industrials", 1603 | "subindustry": "Industrial Conglomerates" 1604 | }, 1605 | { 1606 | "exchange": "NYSE", 1607 | "symbol": "HRL", 1608 | "name":"Hormel Foods Corp.", 1609 | "industry": "Consumer Staples", 1610 | "subindustry": "Packaged Foods & Meats" 1611 | }, 1612 | { 1613 | "exchange": "NYSE", 1614 | "symbol": "HSP", 1615 | "name":"Hospira Inc.", 1616 | "industry": "Health Care", 1617 | "subindustry": "Health Care Equipment & Services" 1618 | }, 1619 | { 1620 | "exchange": "NYSE", 1621 | "symbol": "HST", 1622 | "name":"Host Hotels & Resorts", 1623 | "industry": "Financials", 1624 | "subindustry": "REITs" 1625 | }, 1626 | { 1627 | "exchange": "NASDAQ", 1628 | "symbol": "HCBK", 1629 | "name":"Hudson City Bancorp", 1630 | "industry": "Financials", 1631 | "subindustry": "Thrifts & Mortgage Finance" 1632 | }, 1633 | { 1634 | "exchange": "NYSE", 1635 | "symbol": "HUM", 1636 | "name":"Humana Inc.", 1637 | "industry": "Health Care", 1638 | "subindustry": "Managed Health Care" 1639 | }, 1640 | { 1641 | "exchange": "NASDAQ", 1642 | "symbol": "HBAN", 1643 | "name":"Huntington Bancshares", 1644 | "industry": "Financials", 1645 | "subindustry": "Banks" 1646 | }, 1647 | { 1648 | "exchange": "NYSE", 1649 | "symbol": "ITW", 1650 | "name":"Illinois Tool Works", 1651 | "industry": "Industrials", 1652 | "subindustry": "Industrial Machinery" 1653 | }, 1654 | { 1655 | "exchange": "NYSE", 1656 | "symbol": "IR", 1657 | "name":"Ingersoll-Rand PLC", 1658 | "industry": "Industrials", 1659 | "subindustry": "Industrial Conglomerates" 1660 | }, 1661 | { 1662 | "exchange": "NYSE", 1663 | "symbol": "TEG", 1664 | "name":"Integrys Energy Group Inc.", 1665 | "industry": "Utilities", 1666 | "subindustry": "MultiUtilities" 1667 | }, 1668 | { 1669 | "exchange": "NASDAQ", 1670 | "symbol": "INTC", 1671 | "name":"Intel Corp.", 1672 | "industry": "Information Technology", 1673 | "subindustry": "Semiconductors" 1674 | }, 1675 | { 1676 | "exchange": "NYSE", 1677 | "symbol": "ICE", 1678 | "name":"Intercontinental Exchange", 1679 | "industry": "Financials", 1680 | "subindustry": "Diversified Financial Services" 1681 | }, 1682 | { 1683 | "exchange": "NYSE", 1684 | "symbol": "IBM", 1685 | "name":"International Bus. Machines", 1686 | "industry": "Information Technology", 1687 | "subindustry": "IT Consulting & Services" 1688 | }, 1689 | { 1690 | "exchange": "NYSE", 1691 | "symbol": "IP", 1692 | "name":"International Paper", 1693 | "industry": "Materials", 1694 | "subindustry": "Paper Products" 1695 | }, 1696 | { 1697 | "exchange": "NYSE", 1698 | "symbol": "IPG", 1699 | "name":"Interpublic Group", 1700 | "industry": "Consumer Discretionary", 1701 | "subindustry": "Advertising" 1702 | }, 1703 | { 1704 | "exchange": "NYSE", 1705 | "symbol": "IFF", 1706 | "name":"Intl Flavors & Fragrances", 1707 | "industry": "Materials", 1708 | "subindustry": "Specialty Chemicals" 1709 | }, 1710 | { 1711 | "exchange": "NASDAQ", 1712 | "symbol": "INTU", 1713 | "name":"Intuit Inc.", 1714 | "industry": "Information Technology", 1715 | "subindustry": "Internet Software & Services" 1716 | }, 1717 | { 1718 | "exchange": "NASDAQ", 1719 | "symbol": "ISRG", 1720 | "name":"Intuitive Surgical Inc.", 1721 | "industry": "Health Care", 1722 | "subindustry": "Health Care Equipment & Services" 1723 | }, 1724 | { 1725 | "exchange": "NYSE", 1726 | "symbol": "IVZ", 1727 | "name":"Invesco Ltd.", 1728 | "industry": "Financials", 1729 | "subindustry": "Asset Management & Custody Banks" 1730 | }, 1731 | { 1732 | "exchange": "NYSE", 1733 | "symbol": "IRM", 1734 | "name":"Iron Mountain Incorporated", 1735 | "industry": "Industrials", 1736 | "subindustry": "Data Processing Services" 1737 | }, 1738 | { 1739 | "exchange": "NYSE", 1740 | "symbol": "JEC", 1741 | "name":"Jacobs Engineering Group", 1742 | "industry": "Industrials", 1743 | "subindustry": "Industrial Conglomerates" 1744 | }, 1745 | { 1746 | "exchange": "NYSE", 1747 | "symbol": "JNJ", 1748 | "name":"Johnson & Johnson", 1749 | "industry": "Health Care", 1750 | "subindustry": "Health Care Equipment & Services" 1751 | }, 1752 | { 1753 | "exchange": "NYSE", 1754 | "symbol": "JCI", 1755 | "name":"Johnson Controls", 1756 | "industry": "Consumer Discretionary", 1757 | "subindustry": "Auto Parts & Equipment" 1758 | }, 1759 | { 1760 | "exchange": "NYSE", 1761 | "symbol": "JOY", 1762 | "name":"Joy Global Inc.", 1763 | "industry": "Industrials", 1764 | "subindustry": "Industrial Machinery" 1765 | }, 1766 | { 1767 | "exchange": "NYSE", 1768 | "symbol": "JPM", 1769 | "name":"JPMorgan Chase & Co.", 1770 | "industry": "Financials", 1771 | "subindustry": "Banks" 1772 | }, 1773 | { 1774 | "exchange": "NYSE", 1775 | "symbol": "JNPR", 1776 | "name":"Juniper Networks", 1777 | "industry": "Information Technology", 1778 | "subindustry": "Networking Equipment" 1779 | }, 1780 | { 1781 | "exchange": "NYSE", 1782 | "symbol": "KSU", 1783 | "name":"Kansas City Southern", 1784 | "industry": "Industrials", 1785 | "subindustry": "Railroads" 1786 | }, 1787 | { 1788 | "exchange": "NYSE", 1789 | "symbol": "K", 1790 | "name":"Kellogg Co.", 1791 | "industry": "Consumer Staples", 1792 | "subindustry": "Packaged Foods & Meats" 1793 | }, 1794 | { 1795 | "exchange": "NYSE", 1796 | "symbol": "KEY", 1797 | "name":"KeyCorp", 1798 | "industry": "Financials", 1799 | "subindustry": "Banks" 1800 | }, 1801 | { 1802 | "exchange": "NASDAQ", 1803 | "symbol": "GMCR", 1804 | "name":"Keurig Green Mountain", 1805 | "industry": "Consumer Staples", 1806 | "subindustry": "Packaged Foods & Meats" 1807 | }, 1808 | { 1809 | "exchange": "NYSE", 1810 | "symbol": "KMB", 1811 | "name":"Kimberly-Clark", 1812 | "industry": "Consumer Staples", 1813 | "subindustry": "Household Products" 1814 | }, 1815 | { 1816 | "exchange": "NYSE", 1817 | "symbol": "KIM", 1818 | "name":"Kimco Realty", 1819 | "industry": "Financials", 1820 | "subindustry": "REITs" 1821 | }, 1822 | { 1823 | "exchange": "NYSE", 1824 | "symbol": "KMI", 1825 | "name":"Kinder Morgan", 1826 | "industry": "Energy", 1827 | "subindustry": "Oil & Gas Refining & Marketing & Transportation" 1828 | }, 1829 | { 1830 | "exchange": "NASDAQ", 1831 | "symbol": "KLAC", 1832 | "name":"KLA-Tencor Corp.", 1833 | "industry": "Information Technology", 1834 | "subindustry": "Semiconductor Equipment" 1835 | }, 1836 | { 1837 | "exchange": "NYSE", 1838 | "symbol": "KSS", 1839 | "name":"Kohl's Corp.", 1840 | "industry": "Consumer Discretionary", 1841 | "subindustry": "General Merchandise Stores" 1842 | }, 1843 | { 1844 | "exchange": "NASDAQ", 1845 | "symbol": "KRFT", 1846 | "name":"Kraft Foods|Kraft Foods Group", 1847 | "industry": "Consumer Staples", 1848 | "subindustry": "Packaged Foods & Meats" 1849 | }, 1850 | { 1851 | "exchange": "NYSE", 1852 | "symbol": "KR", 1853 | "name":"Kroger Co.", 1854 | "industry": "Consumer Staples", 1855 | "subindustry": "Food Retail" 1856 | }, 1857 | { 1858 | "exchange": "NYSE", 1859 | "symbol": "LB", 1860 | "name":"L Brands Inc.", 1861 | "industry": "Consumer Discretionary", 1862 | "subindustry": "Apparel Retail" 1863 | }, 1864 | { 1865 | "exchange": "NYSE", 1866 | "symbol": "LLL", 1867 | "name":"L-3 Communications Holdings", 1868 | "industry": "Industrials", 1869 | "subindustry": "Industrial Conglomerates" 1870 | }, 1871 | { 1872 | "exchange": "NYSE", 1873 | "symbol": "LH", 1874 | "name":"Laboratory Corp. of America Holding", 1875 | "industry": "Health Care", 1876 | "subindustry": "Health Care Facilities" 1877 | }, 1878 | { 1879 | "exchange": "NASDAQ", 1880 | "symbol": "LRCX", 1881 | "name":"Lam Research", 1882 | "industry": "Information Technology", 1883 | "subindustry": "Semiconductor Equipment" 1884 | }, 1885 | { 1886 | "exchange": "NYSE", 1887 | "symbol": "LM", 1888 | "name":"Legg Mason", 1889 | "industry": "Financials", 1890 | "subindustry": "Asset Management & Custody Banks" 1891 | }, 1892 | { 1893 | "exchange": "NYSE", 1894 | "symbol": "LEG", 1895 | "name":"Leggett & Platt", 1896 | "industry": "Industrials", 1897 | "subindustry": "Industrial Conglomerates" 1898 | }, 1899 | { 1900 | "exchange": "NYSE", 1901 | "symbol": "LEN", 1902 | "name":"Lennar Corp.", 1903 | "industry": "Consumer Discretionary", 1904 | "subindustry": "Homebuilding" 1905 | }, 1906 | { 1907 | "exchange": "NYSE", 1908 | "symbol": "LVLT", 1909 | "name":"Level 3 Communications", 1910 | "industry": "Telecommunications Services", 1911 | "subindustry": "Alternative Carriers" 1912 | }, 1913 | { 1914 | "exchange": "NYSE", 1915 | "symbol": "LUK", 1916 | "name":"Leucadia National Corp.", 1917 | "industry": "Financials", 1918 | "subindustry": "Multi-Sector Holdings" 1919 | }, 1920 | { 1921 | "exchange": "NYSE", 1922 | "symbol": "LLY", 1923 | "name":"Lilly (Eli) & Co.", 1924 | "industry": "Health Care", 1925 | "subindustry": "Pharmaceuticals" 1926 | }, 1927 | { 1928 | "exchange": "NYSE", 1929 | "symbol": "LNC", 1930 | "name":"Lincoln National", 1931 | "industry": "Financials", 1932 | "subindustry": "Multi-line Insurance" 1933 | }, 1934 | { 1935 | "exchange": "NASDAQ", 1936 | "symbol": "LLTC", 1937 | "name":"Linear Technology Corp.", 1938 | "industry": "Information Technology", 1939 | "subindustry": "Semiconductors" 1940 | }, 1941 | { 1942 | "exchange": "NYSE", 1943 | "symbol": "LMT", 1944 | "name":"Lockheed Martin Corp.", 1945 | "industry": "Industrials", 1946 | "subindustry": "Aerospace & Defense" 1947 | }, 1948 | { 1949 | "exchange": "NYSE", 1950 | "symbol": "L", 1951 | "name":"Loews Corp.", 1952 | "industry": "Financials", 1953 | "subindustry": "Multi-Sector Holdings" 1954 | }, 1955 | { 1956 | "exchange": "NYSE", 1957 | "symbol": "LO", 1958 | "name":"Lorillard Inc.", 1959 | "industry": "Consumer Staples", 1960 | "subindustry": "Tobacco" 1961 | }, 1962 | { 1963 | "exchange": "NYSE", 1964 | "symbol": "LOW", 1965 | "name":"Lowe's Cos.", 1966 | "industry": "Consumer Discretionary", 1967 | "subindustry": "Home Improvement Retail" 1968 | }, 1969 | { 1970 | "exchange": "NYSE", 1971 | "symbol": "LYB", 1972 | "name":"LyondellBasell", 1973 | "industry": "Materials", 1974 | "subindustry": "Diversified Chemicals" 1975 | }, 1976 | { 1977 | "exchange": "NYSE", 1978 | "symbol": "MTB", 1979 | "name":"M&T Bank Corp.", 1980 | "industry": "Financials", 1981 | "subindustry": "Banks" 1982 | }, 1983 | { 1984 | "exchange": "NYSE", 1985 | "symbol": "MAC", 1986 | "name":"Macerich", 1987 | "industry": "Financials", 1988 | "subindustry": "Retail REITs" 1989 | }, 1990 | { 1991 | "exchange": "NYSE", 1992 | "symbol": "M", 1993 | "name":"Macy's Inc.", 1994 | "industry": "Consumer Discretionary", 1995 | "subindustry": "Department Stores" 1996 | }, 1997 | { 1998 | "exchange": "NYSE", 1999 | "symbol": "MNK", 2000 | "name":"Mallinckrodt Plc", 2001 | "industry": "Health Care", 2002 | "subindustry": "Pharmaceuticals" 2003 | }, 2004 | { 2005 | "exchange": "NYSE", 2006 | "symbol": "MRO", 2007 | "name":"Marathon Oil Corp.", 2008 | "industry": "Energy", 2009 | "subindustry": "Oil & Gas Exploration & Production" 2010 | }, 2011 | { 2012 | "exchange": "NYSE", 2013 | "symbol": "MPC", 2014 | "name":"Marathon Petroleum", 2015 | "industry": "Energy", 2016 | "subindustry": "Oil & Gas Refining & Marketing & Transportation" 2017 | }, 2018 | { 2019 | "exchange": "NASDAQ", 2020 | "symbol": "MAR", 2021 | "name":"Marriott Int'l.", 2022 | "industry": "Consumer Discretionary", 2023 | "subindustry": "Hotels, Resorts & Cruise Lines" 2024 | }, 2025 | { 2026 | "exchange": "NYSE", 2027 | "symbol": "MMC", 2028 | "name":"Marsh & McLennan", 2029 | "industry": "Financials", 2030 | "subindustry": "Insurance Brokers" 2031 | }, 2032 | { 2033 | "exchange": "NYSE", 2034 | "symbol": "MLM", 2035 | "name":"Martin Marietta Materials", 2036 | "industry": "Materials", 2037 | "subindustry": "Construction Materials" 2038 | }, 2039 | { 2040 | "exchange": "NYSE", 2041 | "symbol": "MAS", 2042 | "name":"Masco Corp.", 2043 | "industry": "Industrials", 2044 | "subindustry": "Building Products" 2045 | }, 2046 | { 2047 | "exchange": "NYSE", 2048 | "symbol": "MA", 2049 | "name":"Mastercard Inc.", 2050 | "industry": "Information Technology", 2051 | "subindustry": "Internet Software & Services" 2052 | }, 2053 | { 2054 | "exchange": "NASDAQ", 2055 | "symbol": "MAT", 2056 | "name":"Mattel Inc.", 2057 | "industry": "Consumer Discretionary", 2058 | "subindustry": "Leisure Products" 2059 | }, 2060 | { 2061 | "exchange": "NYSE", 2062 | "symbol": "MKC", 2063 | "name":"McCormick & Co.", 2064 | "industry": "Consumer Staples", 2065 | "subindustry": "Packaged Foods & Meats" 2066 | }, 2067 | { 2068 | "exchange": "NYSE", 2069 | "symbol": "MCD", 2070 | "name":"McDonald's Corp.", 2071 | "industry": "Consumer Discretionary", 2072 | "subindustry": "Restaurants" 2073 | }, 2074 | { 2075 | "exchange": "NYSE", 2076 | "symbol": "MHFI", 2077 | "name":"McGraw Hill Financial", 2078 | "industry": "Financials", 2079 | "subindustry": "Diversified Financial Services" 2080 | }, 2081 | { 2082 | "exchange": "NYSE", 2083 | "symbol": "MCK", 2084 | "name":"McKesson Corp.", 2085 | "industry": "Health Care", 2086 | "subindustry": "Health Care Distributors & Services" 2087 | }, 2088 | { 2089 | "exchange": "NYSE", 2090 | "symbol": "MJN", 2091 | "name":"Mead Johnson", 2092 | "industry": "Consumer Staples", 2093 | "subindustry": "Packaged Foods & Meats" 2094 | }, 2095 | { 2096 | "exchange": "NYSE", 2097 | "symbol": "MWV", 2098 | "name":"MeadWestvaco Corporation", 2099 | "industry": "Materials", 2100 | "subindustry": "Paper Packaging" 2101 | }, 2102 | { 2103 | "exchange": "NYSE", 2104 | "symbol": "MDT", 2105 | "name":"Medtronic Inc.", 2106 | "industry": "Health Care", 2107 | "subindustry": "Health Care Equipment & Services" 2108 | }, 2109 | { 2110 | "exchange": "NYSE", 2111 | "symbol": "MRK", 2112 | "name":"Merck & Co.", 2113 | "industry": "Health Care", 2114 | "subindustry": "Pharmaceuticals" 2115 | }, 2116 | { 2117 | "exchange": "NYSE", 2118 | "symbol": "MET", 2119 | "name":"MetLife Inc.", 2120 | "industry": "Financials", 2121 | "subindustry": "Life & Health Insurance" 2122 | }, 2123 | { 2124 | "exchange": "NYSE", 2125 | "symbol": "KORS", 2126 | "name":"Michael Kors Holdings", 2127 | "industry": "Consumer Discretionary", 2128 | "subindustry": "Apparel, Accessories & Luxury Goods" 2129 | }, 2130 | { 2131 | "exchange": "NASDAQ", 2132 | "symbol": "MCHP", 2133 | "name":"Microchip Technology", 2134 | "industry": "Information Technology", 2135 | "subindustry": "Semiconductors" 2136 | }, 2137 | { 2138 | "exchange": "NASDAQ", 2139 | "symbol": "MU", 2140 | "name":"Micron Technology", 2141 | "industry": "Information Technology", 2142 | "subindustry": "Semiconductors" 2143 | }, 2144 | { 2145 | "exchange": "NASDAQ", 2146 | "symbol": "MSFT", 2147 | "name":"Microsoft Corp.", 2148 | "industry": "Information Technology", 2149 | "subindustry": "Systems Software" 2150 | }, 2151 | { 2152 | "exchange": "NYSE", 2153 | "symbol": "MHK", 2154 | "name":"Mohawk Industries", 2155 | "industry": "Consumer Discretionary", 2156 | "subindustry": "Home Furnishings" 2157 | }, 2158 | { 2159 | "exchange": "NYSE", 2160 | "symbol": "TAP", 2161 | "name":"Molson Coors Brewing Company", 2162 | "industry": "Consumer Staples", 2163 | "subindustry": "Brewers" 2164 | }, 2165 | { 2166 | "exchange": "NASDAQ", 2167 | "symbol": "MDLZ", 2168 | "name":"Mondelez|Mondelez International", 2169 | "industry": "Consumer Staples", 2170 | "subindustry": "Packaged Foods & Meats" 2171 | }, 2172 | { 2173 | "exchange": "NYSE", 2174 | "symbol": "MON", 2175 | "name":"Monsanto Co.", 2176 | "industry": "Materials", 2177 | "subindustry": "Fertilizers & Agricultural Chemicals" 2178 | }, 2179 | { 2180 | "exchange": "NASDAQ", 2181 | "symbol": "MNST", 2182 | "name":"Monster Beverage", 2183 | "industry": "Consumer Staples", 2184 | "subindustry": "Soft Drinks" 2185 | }, 2186 | { 2187 | "exchange": "NYSE", 2188 | "symbol": "MCO", 2189 | "name":"Moody's Corp", 2190 | "industry": "Financials", 2191 | "subindustry": "Diversified Financial Services" 2192 | }, 2193 | { 2194 | "exchange": "NYSE", 2195 | "symbol": "MS", 2196 | "name":"Morgan Stanley", 2197 | "industry": "Financials", 2198 | "subindustry": "Investment Banking & Brokerage" 2199 | }, 2200 | { 2201 | "exchange": "NYSE", 2202 | "symbol": "MOS", 2203 | "name":"The Mosaic Company", 2204 | "industry": "Materials", 2205 | "subindustry": "Fertilizers & Agricultural Chemicals" 2206 | }, 2207 | { 2208 | "exchange": "NYSE", 2209 | "symbol": "MSI", 2210 | "name":"Motorola Solutions Inc.", 2211 | "industry": "Information Technology", 2212 | "subindustry": "Telecommunications Equipment" 2213 | }, 2214 | { 2215 | "exchange": "NYSE", 2216 | "symbol": "MUR", 2217 | "name":"Murphy Oil", 2218 | "industry": "Energy", 2219 | "subindustry": "Integrated Oil & Gas" 2220 | }, 2221 | { 2222 | "exchange": "NASDAQ", 2223 | "symbol": "MYL", 2224 | "name":"Mylan N.V.", 2225 | "industry": "Health Care", 2226 | "subindustry": "Pharmaceuticals" 2227 | }, 2228 | { 2229 | "exchange": "NASDAQ", 2230 | "symbol": "NDAQ", 2231 | "name":"NASDAQ OMX Group", 2232 | "industry": "Financials", 2233 | "subindustry": "Diversified Financial Services" 2234 | }, 2235 | { 2236 | "exchange": "NYSE", 2237 | "symbol": "NOV", 2238 | "name":"National Oilwell Varco Inc.", 2239 | "industry": "Energy", 2240 | "subindustry": "Oil & Gas Equipment & Services" 2241 | }, 2242 | { 2243 | "exchange": "NASDAQ", 2244 | "symbol": "NAVI", 2245 | "name":"Navient", 2246 | "industry": "Financials", 2247 | "subindustry": "Consumer Finance" 2248 | }, 2249 | { 2250 | "exchange": "NASDAQ", 2251 | "symbol": "NTAP", 2252 | "name":"NetApp", 2253 | "industry": "Information Technology", 2254 | "subindustry": "Internet Software & Services" 2255 | }, 2256 | { 2257 | "exchange": "NASDAQ", 2258 | "symbol": "NFLX", 2259 | "name":"Netflix Inc.", 2260 | "industry": "Information Technology", 2261 | "subindustry": "Internet Software & Services" 2262 | }, 2263 | { 2264 | "exchange": "NYSE", 2265 | "symbol": "NWL", 2266 | "name":"Newell Rubbermaid Co.", 2267 | "industry": "Consumer Discretionary", 2268 | "subindustry": "Housewares & Specialties" 2269 | }, 2270 | { 2271 | "exchange": "NYSE", 2272 | "symbol": "NFX", 2273 | "name":"Newfield Exploration Co", 2274 | "industry": "Energy", 2275 | "subindustry": "Oil & Gas Exploration & Production" 2276 | }, 2277 | { 2278 | "exchange": "NYSE", 2279 | "symbol": "NEM", 2280 | "name":"Newmont Mining Corp. (Hldg. Co.)", 2281 | "industry": "Materials", 2282 | "subindustry": "Gold" 2283 | }, 2284 | { 2285 | "exchange": "NASDAQ", 2286 | "symbol": "NWSA", 2287 | "name":"News Corp.", 2288 | "industry": "Consumer Discretionary", 2289 | "subindustry": "Publishing" 2290 | }, 2291 | { 2292 | "exchange": "NYSE", 2293 | "symbol": "NEE", 2294 | "name":"NextEra Energy", 2295 | "industry": "Utilities", 2296 | "subindustry": "MultiUtilities" 2297 | }, 2298 | { 2299 | "exchange": "NYSE", 2300 | "symbol": "NLSN", 2301 | "name":"Nielsen Holdings", 2302 | "industry": " ||Industrials", 2303 | "subindustry": "Research & Consulting Services" 2304 | }, 2305 | { 2306 | "exchange": "NYSE", 2307 | "symbol": "NKE", 2308 | "name":"Nike (company)|Nike", 2309 | "industry": "Consumer Discretionary", 2310 | "subindustry": "Apparel, Accessories & Luxury Goods" 2311 | }, 2312 | { 2313 | "exchange": "NYSE", 2314 | "symbol": "NI", 2315 | "name":"NiSource Inc.", 2316 | "industry": "Utilities", 2317 | "subindustry": "MultiUtilities" 2318 | }, 2319 | { 2320 | "exchange": "NYSE", 2321 | "symbol": "NE", 2322 | "name":"Noble Corp", 2323 | "industry": "Energy", 2324 | "subindustry": "Oil & Gas Drilling" 2325 | }, 2326 | { 2327 | "exchange": "NYSE", 2328 | "symbol": "NBL", 2329 | "name":"Noble Energy Inc", 2330 | "industry": "Energy", 2331 | "subindustry": "Oil & Gas Exploration & Production" 2332 | }, 2333 | { 2334 | "exchange": "NYSE", 2335 | "symbol": "JWN", 2336 | "name":"Nordstrom", 2337 | "industry": "Consumer Discretionary", 2338 | "subindustry": "Department Stores" 2339 | }, 2340 | { 2341 | "exchange": "NYSE", 2342 | "symbol": "NSC", 2343 | "name":"Norfolk Southern Corp.", 2344 | "industry": "Industrials", 2345 | "subindustry": "Railroads" 2346 | }, 2347 | { 2348 | "exchange": "NASDAQ", 2349 | "symbol": "NTRS", 2350 | "name":"Northern Trust Corp.", 2351 | "industry": "Financials", 2352 | "subindustry": "Asset Management & Custody Banks" 2353 | }, 2354 | { 2355 | "exchange": "NYSE", 2356 | "symbol": "NOC", 2357 | "name":"Northrop Grumman Corp.", 2358 | "industry": "Industrials", 2359 | "subindustry": "Aerospace & Defense" 2360 | }, 2361 | { 2362 | "exchange": "NYSE", 2363 | "symbol": "NRG", 2364 | "name":"NRG Energy", 2365 | "industry": "Utilities", 2366 | "subindustry": "Independent Power Producers & Energy Traders" 2367 | }, 2368 | { 2369 | "exchange": "NYSE", 2370 | "symbol": "NUE", 2371 | "name":"Nucor Corp.", 2372 | "industry": "Materials", 2373 | "subindustry": "Steel" 2374 | }, 2375 | { 2376 | "exchange": "NASDAQ", 2377 | "symbol": "NVDA", 2378 | "name":"Nvidia Corporation", 2379 | "industry": "Information Technology", 2380 | "subindustry": "Semiconductors" 2381 | }, 2382 | { 2383 | "exchange": "NASDAQ", 2384 | "symbol": "ORLY", 2385 | "name":"O'Reilly Automotive", 2386 | "industry": "Consumer Discretionary", 2387 | "subindustry": "Specialty Stores" 2388 | }, 2389 | { 2390 | "exchange": "NYSE", 2391 | "symbol": "OXY", 2392 | "name":"Occidental Petroleum", 2393 | "industry": "Energy", 2394 | "subindustry": "Oil & Gas Exploration & Production" 2395 | }, 2396 | { 2397 | "exchange": "NYSE", 2398 | "symbol": "OMC", 2399 | "name":"Omnicom Group", 2400 | "industry": "Consumer Discretionary", 2401 | "subindustry": "Advertising" 2402 | }, 2403 | { 2404 | "exchange": "NYSE", 2405 | "symbol": "OKE", 2406 | "name":"ONEOK", 2407 | "industry": "Energy", 2408 | "subindustry": "Oil & Gas Exploration & Production" 2409 | }, 2410 | { 2411 | "exchange": "NYSE", 2412 | "symbol": "ORCL", 2413 | "name":"Oracle Corp.", 2414 | "industry": "Information Technology", 2415 | "subindustry": "Application Software" 2416 | }, 2417 | { 2418 | "exchange": "NYSE", 2419 | "symbol": "OI", 2420 | "name":"Owens-Illinois Inc", 2421 | "industry": "Materials", 2422 | "subindustry": "Metal & Glass Containers" 2423 | }, 2424 | { 2425 | "exchange": "NASDAQ", 2426 | "symbol": "PCAR", 2427 | "name":"PACCAR Inc.", 2428 | "industry": "Industrials", 2429 | "subindustry": "Construction & Farm Machinery & Heavy Trucks" 2430 | }, 2431 | { 2432 | "exchange": "NYSE", 2433 | "symbol": "PLL", 2434 | "name":"Pall Corp.", 2435 | "industry": "Industrials", 2436 | "subindustry": "Industrial Conglomerates" 2437 | }, 2438 | { 2439 | "exchange": "NYSE", 2440 | "symbol": "PH", 2441 | "name":"Parker-Hannifin", 2442 | "industry": "Industrials", 2443 | "subindustry": "Industrial Conglomerates" 2444 | }, 2445 | { 2446 | "exchange": "NASDAQ", 2447 | "symbol": "PDCO", 2448 | "name":"Patterson Companies", 2449 | "industry": "Health Care", 2450 | "subindustry": "Health Care Supplies" 2451 | }, 2452 | { 2453 | "exchange": "NASDAQ", 2454 | "symbol": "PAYX", 2455 | "name":"Paychex Inc.", 2456 | "industry": "Information Technology", 2457 | "subindustry": "Internet Software & Services" 2458 | }, 2459 | { 2460 | "exchange": "NYSE", 2461 | "symbol": "PNR", 2462 | "name":"Pentair|Pentair Ltd.", 2463 | "industry": "Industrials", 2464 | "subindustry": "Industrial Conglomerates" 2465 | }, 2466 | { 2467 | "exchange": "NASDAQ", 2468 | "symbol": "PBCT", 2469 | "name":"People's United Financial", 2470 | "industry": "Financials", 2471 | "subindustry": "Thrifts & Mortgage Finance" 2472 | }, 2473 | { 2474 | "exchange": "NYSE", 2475 | "symbol": "POM", 2476 | "name":"Pepco Holdings Inc.", 2477 | "industry": "Utilities", 2478 | "subindustry": "Electric Utilities" 2479 | }, 2480 | { 2481 | "exchange": "NYSE", 2482 | "symbol": "PEP", 2483 | "name":"PepsiCo Inc.", 2484 | "industry": "Consumer Staples", 2485 | "subindustry": "Soft Drinks" 2486 | }, 2487 | { 2488 | "exchange": "NYSE", 2489 | "symbol": "PKI", 2490 | "name":"PerkinElmer", 2491 | "industry": "Health Care", 2492 | "subindustry": "Health Care Equipment & Services" 2493 | }, 2494 | { 2495 | "exchange": "NYSE", 2496 | "symbol": "PRGO", 2497 | "name":"Perrigo", 2498 | "industry": "Health Care", 2499 | "subindustry": "Pharmaceuticals" 2500 | }, 2501 | { 2502 | "exchange": "NYSE", 2503 | "symbol": "PFE", 2504 | "name":"Pfizer Inc.", 2505 | "industry": "Health Care", 2506 | "subindustry": "Pharmaceuticals" 2507 | }, 2508 | { 2509 | "exchange": "NYSE", 2510 | "symbol": "PCG", 2511 | "name":"PG&E Corp.", 2512 | "industry": "Utilities", 2513 | "subindustry": "MultiUtilities" 2514 | }, 2515 | { 2516 | "exchange": "NYSE", 2517 | "symbol": "PM", 2518 | "name":"Philip Morris International", 2519 | "industry": "Consumer Staples", 2520 | "subindustry": "Tobacco" 2521 | }, 2522 | { 2523 | "exchange": "NYSE", 2524 | "symbol": "PSX", 2525 | "name":"Phillips 66", 2526 | "industry": "Energy", 2527 | "subindustry": "Oil & Gas Refining & Marketing & Transportation" 2528 | }, 2529 | { 2530 | "exchange": "NYSE", 2531 | "symbol": "PNW", 2532 | "name":"Pinnacle West Capital", 2533 | "industry": "Utilities", 2534 | "subindustry": "MultiUtilities" 2535 | }, 2536 | { 2537 | "exchange": "NYSE", 2538 | "symbol": "PXD", 2539 | "name":"Pioneer Natural Resources", 2540 | "industry": "Energy", 2541 | "subindustry": "Oil & Gas Exploration & Production" 2542 | }, 2543 | { 2544 | "exchange": "NYSE", 2545 | "symbol": "PBI", 2546 | "name":"Pitney-Bowes", 2547 | "industry": "Industrials", 2548 | "subindustry": "Office Services & Supplies" 2549 | }, 2550 | { 2551 | "exchange": "NYSE", 2552 | "symbol": "PCL", 2553 | "name":"Plum Creek Timber Co.", 2554 | "industry": "Financials", 2555 | "subindustry": "REITs" 2556 | }, 2557 | { 2558 | "exchange": "NYSE", 2559 | "symbol": "PNC", 2560 | "name":"PNC Financial Services", 2561 | "industry": "Financials", 2562 | "subindustry": "Banks" 2563 | }, 2564 | { 2565 | "exchange": "NYSE", 2566 | "symbol": "RL", 2567 | "name":"Polo Ralph Lauren Corp.", 2568 | "industry": "Consumer Discretionary", 2569 | "subindustry": "Apparel, Accessories & Luxury Goods" 2570 | }, 2571 | { 2572 | "exchange": "NYSE", 2573 | "symbol": "PPG", 2574 | "name":"PPG Industries", 2575 | "industry": "Materials", 2576 | "subindustry": "Diversified Chemicals" 2577 | }, 2578 | { 2579 | "exchange": "NYSE", 2580 | "symbol": "PPL", 2581 | "name":"PPL Corp.", 2582 | "industry": "Utilities", 2583 | "subindustry": "Electric Utilities" 2584 | }, 2585 | { 2586 | "exchange": "NYSE", 2587 | "symbol": "PX", 2588 | "name":"Praxair Inc.", 2589 | "industry": "Materials", 2590 | "subindustry": "Industrial Gases" 2591 | }, 2592 | { 2593 | "exchange": "NYSE", 2594 | "symbol": "PCP", 2595 | "name":"Precision Castparts", 2596 | "industry": "Industrials", 2597 | "subindustry": "Industrial Conglomerates" 2598 | }, 2599 | { 2600 | "exchange": "NASDAQ", 2601 | "symbol": "PCLN", 2602 | "name":"Priceline.com Inc", 2603 | "industry": "Consumer Discretionary", 2604 | "subindustry": "Hotels, Resorts & Cruise Lines" 2605 | }, 2606 | { 2607 | "exchange": "NYSE", 2608 | "symbol": "PFG", 2609 | "name":"Principal Financial Group", 2610 | "industry": "Financials", 2611 | "subindustry": "Diversified Financial Services" 2612 | }, 2613 | { 2614 | "exchange": "NYSE", 2615 | "symbol": "PG", 2616 | "name":"Procter & Gamble", 2617 | "industry": "Consumer Staples", 2618 | "subindustry": "Personal Products" 2619 | }, 2620 | { 2621 | "exchange": "NYSE", 2622 | "symbol": "PGR", 2623 | "name":"Progressive Corp.", 2624 | "industry": "Financials", 2625 | "subindustry": "Property & Casualty Insurance" 2626 | }, 2627 | { 2628 | "exchange": "NYSE", 2629 | "symbol": "PLD", 2630 | "name":"Prologis", 2631 | "industry": "Financials", 2632 | "subindustry": "Diversified Financial Services" 2633 | }, 2634 | { 2635 | "exchange": "NYSE", 2636 | "symbol": "PRU", 2637 | "name":"Prudential Financial", 2638 | "industry": "Financials", 2639 | "subindustry": "Diversified Financial Services" 2640 | }, 2641 | { 2642 | "exchange": "NYSE", 2643 | "symbol": "PEG", 2644 | "name":"Public Serv. Enterprise Inc.", 2645 | "industry": "Utilities", 2646 | "subindustry": "Electric Utilities" 2647 | }, 2648 | { 2649 | "exchange": "NYSE", 2650 | "symbol": "PSA", 2651 | "name":"Public Storage", 2652 | "industry": "Financials", 2653 | "subindustry": "REITs" 2654 | }, 2655 | { 2656 | "exchange": "NYSE", 2657 | "symbol": "PHM", 2658 | "name":"Pulte Homes Inc.", 2659 | "industry": "Consumer Discretionary", 2660 | "subindustry": "Homebuilding" 2661 | }, 2662 | { 2663 | "exchange": "NYSE", 2664 | "symbol": "PVH", 2665 | "name":"PVH Corp.", 2666 | "industry": "Consumer Discretionary", 2667 | "subindustry": "Apparel, Accessories & Luxury Goods" 2668 | }, 2669 | { 2670 | "exchange": "NYSE", 2671 | "symbol": "QEP", 2672 | "name":"Questar Corporation (gas company)|QEP Resources", 2673 | "industry": "Energy", 2674 | "subindustry": "Oil & Gas Exploration & Production" 2675 | }, 2676 | { 2677 | "exchange": "NYSE", 2678 | "symbol": "PWR", 2679 | "name":"Quanta Services Inc.", 2680 | "industry": "Industrials", 2681 | "subindustry": "Industrial Conglomerates" 2682 | }, 2683 | { 2684 | "exchange": "NASDAQ", 2685 | "symbol": "QCOM", 2686 | "name":"QUALCOMM Inc.", 2687 | "industry": "Information Technology", 2688 | "subindustry": "Semiconductors" 2689 | }, 2690 | { 2691 | "exchange": "NYSE", 2692 | "symbol": "DGX", 2693 | "name":"Quest Diagnostics", 2694 | "industry": "Health Care", 2695 | "subindustry": "Health Care Facilities" 2696 | }, 2697 | { 2698 | "exchange": "NYSE", 2699 | "symbol": "RRC", 2700 | "name":"Range Resources|Range Resources Corp.", 2701 | "industry": "Energy", 2702 | "subindustry": "Oil & Gas Exploration & Production" 2703 | }, 2704 | { 2705 | "exchange": "NYSE", 2706 | "symbol": "RTN", 2707 | "name":"Raytheon Co.", 2708 | "industry": "Industrials", 2709 | "subindustry": "Aerospace & Defense" 2710 | }, 2711 | { 2712 | "exchange": "NYSE", 2713 | "symbol": "RHT", 2714 | "name":"Red Hat Inc.", 2715 | "industry": "Information Technology", 2716 | "subindustry": "Systems Software" 2717 | }, 2718 | { 2719 | "exchange": "NASDAQ", 2720 | "symbol": "REGN", 2721 | "name":"Regeneron", 2722 | "industry": "Health Care", 2723 | "subindustry": "Biotechnology" 2724 | }, 2725 | { 2726 | "exchange": "NYSE", 2727 | "symbol": "RF", 2728 | "name":"Regions Financial Corp.", 2729 | "industry": "Financials", 2730 | "subindustry": "Diversified Financial Services" 2731 | }, 2732 | { 2733 | "exchange": "NYSE", 2734 | "symbol": "RSG", 2735 | "name":"Republic Services Inc", 2736 | "industry": "Industrials", 2737 | "subindustry": "Industrial Conglomerates" 2738 | }, 2739 | { 2740 | "exchange": "NYSE", 2741 | "symbol": "RAI", 2742 | "name":"Reynolds American Inc.", 2743 | "industry": "Consumer Staples", 2744 | "subindustry": "Tobacco" 2745 | }, 2746 | { 2747 | "exchange": "NYSE", 2748 | "symbol": "RHI", 2749 | "name":"Robert Half International", 2750 | "industry": "Industrials", 2751 | "subindustry": "Human Resource & Employment Services" 2752 | }, 2753 | { 2754 | "exchange": "NYSE", 2755 | "symbol": "ROK", 2756 | "name":"Rockwell Automation Inc.", 2757 | "industry": "Industrials", 2758 | "subindustry": "Industrial Conglomerates" 2759 | }, 2760 | { 2761 | "exchange": "NYSE", 2762 | "symbol": "COL", 2763 | "name":"Rockwell Collins", 2764 | "industry": "Industrials", 2765 | "subindustry": "Industrial Conglomerates" 2766 | }, 2767 | { 2768 | "exchange": "NYSE", 2769 | "symbol": "ROP", 2770 | "name":"Roper Industries", 2771 | "industry": "Industrials", 2772 | "subindustry": "Industrial Conglomerates" 2773 | }, 2774 | { 2775 | "exchange": "NASDAQ", 2776 | "symbol": "ROST", 2777 | "name":"Ross Stores", 2778 | "industry": "Consumer Discretionary", 2779 | "subindustry": "Apparel Retail" 2780 | }, 2781 | { 2782 | "exchange": "NYSE", 2783 | "symbol": "RCL", 2784 | "name":"Royal Caribbean Cruises Ltd", 2785 | "industry": "Consumer Discretionary", 2786 | "subindustry": "Hotel, Resorts and Cruise Lines" 2787 | }, 2788 | { 2789 | "exchange": "NYSE", 2790 | "symbol": "R", 2791 | "name":"Ryder System", 2792 | "industry": "Industrials", 2793 | "subindustry": "Industrial Conglomerates" 2794 | }, 2795 | { 2796 | "exchange": "NYSE", 2797 | "symbol": "CRM", 2798 | "name":"Salesforce.com", 2799 | "industry": "Information Technology", 2800 | "subindustry": "Internet Software & Services" 2801 | }, 2802 | { 2803 | "exchange": "NASDAQ", 2804 | "symbol": "SNDK", 2805 | "name":"SanDisk Corporation", 2806 | "industry": "Information Technology", 2807 | "subindustry": "Computer Storage & Peripherals" 2808 | }, 2809 | { 2810 | "exchange": "NYSE", 2811 | "symbol": "SCG", 2812 | "name":"SCANA Corp", 2813 | "industry": "Utilities", 2814 | "subindustry": "MultiUtilities" 2815 | }, 2816 | { 2817 | "exchange": "NYSE", 2818 | "symbol": "SLB", 2819 | "name":"Schlumberger Ltd.", 2820 | "industry": "Energy", 2821 | "subindustry": "Oil & Gas Equipment & Services" 2822 | }, 2823 | { 2824 | "exchange": "NYSE", 2825 | "symbol": "SNI", 2826 | "name":"Scripps Networks Interactive Inc.", 2827 | "industry": "Consumer Discretionary", 2828 | "subindustry": "Broadcasting & Cable TV" 2829 | }, 2830 | { 2831 | "exchange": "NASDAQ", 2832 | "symbol": "STX", 2833 | "name":"Seagate Technology", 2834 | "industry": "Information Technology", 2835 | "subindustry": "Computer Storage & Peripherals" 2836 | }, 2837 | { 2838 | "exchange": "NYSE", 2839 | "symbol": "SEE", 2840 | "name":"Sealed Air Corp.(New)", 2841 | "industry": "Materials", 2842 | "subindustry": "Paper Packaging" 2843 | }, 2844 | { 2845 | "exchange": "NYSE", 2846 | "symbol": "SRE", 2847 | "name":"Sempra Energy", 2848 | "industry": "Utilities", 2849 | "subindustry": "MultiUtilities" 2850 | }, 2851 | { 2852 | "exchange": "NYSE", 2853 | "symbol": "SHW", 2854 | "name":"Sherwin-Williams", 2855 | "industry": "Materials ||Specialty Chemicals", 2856 | "subindustry": "Cleveland, Ohio]" 2857 | }, 2858 | { 2859 | "exchange": "NASDAQ", 2860 | "symbol": "SIAL", 2861 | "name":"Sigma-Aldrich", 2862 | "industry": "Materials", 2863 | "subindustry": "Diversified Chemicals" 2864 | }, 2865 | { 2866 | "exchange": "NYSE", 2867 | "symbol": "SPG", 2868 | "name":"Simon Property Group Inc", 2869 | "industry": "Financials", 2870 | "subindustry": "REITs" 2871 | }, 2872 | { 2873 | "exchange": "NASDAQ", 2874 | "symbol": "SWKS", 2875 | "name":"Skyworks Solutions", 2876 | "industry": "Information Technology", 2877 | "subindustry": "Semiconductors" 2878 | }, 2879 | { 2880 | "exchange": "NYSE", 2881 | "symbol": "SLG", 2882 | "name":"SL Green Realty", 2883 | "industry": "Financials", 2884 | "subindustry": "Office REITs" 2885 | }, 2886 | { 2887 | "exchange": "NYSE", 2888 | "symbol": "SJM", 2889 | "name":"Smucker (J.M.)", 2890 | "industry": "Consumer Staples", 2891 | "subindustry": "Packaged Foods & Meats" 2892 | }, 2893 | { 2894 | "exchange": "NYSE", 2895 | "symbol": "SNA", 2896 | "name":"Snap-On Inc.", 2897 | "industry": "Consumer Discretionary", 2898 | "subindustry": "Household Appliances" 2899 | }, 2900 | { 2901 | "exchange": "NYSE", 2902 | "symbol": "SO", 2903 | "name":"Southern Co.", 2904 | "industry": "Utilities", 2905 | "subindustry": "Electric Utilities" 2906 | }, 2907 | { 2908 | "exchange": "NYSE", 2909 | "symbol": "LUV", 2910 | "name":"Southwest Airlines", 2911 | "industry": "Industrials", 2912 | "subindustry": "Airlines" 2913 | }, 2914 | { 2915 | "exchange": "NYSE", 2916 | "symbol": "SWN", 2917 | "name":"Southwestern Energy", 2918 | "industry": "Energy", 2919 | "subindustry": "Oil & Gas Exploration & Production" 2920 | }, 2921 | { 2922 | "exchange": "NYSE", 2923 | "symbol": "SE", 2924 | "name":"Spectra Energy Corp.", 2925 | "industry": "Energy", 2926 | "subindustry": "Oil & Gas Refining & Marketing & Transportation" 2927 | }, 2928 | { 2929 | "exchange": "NYSE", 2930 | "symbol": "STJ", 2931 | "name":"St Jude Medical", 2932 | "industry": "Health Care", 2933 | "subindustry": "Health Care Equipment & Services" 2934 | }, 2935 | { 2936 | "exchange": "NYSE", 2937 | "symbol": "SWK", 2938 | "name":"Stanley Black & Decker", 2939 | "industry": "Consumer Discretionary", 2940 | "subindustry": "Household Appliances" 2941 | }, 2942 | { 2943 | "exchange": "NASDAQ", 2944 | "symbol": "SPLS", 2945 | "name":"Staples Inc.", 2946 | "industry": "Consumer Discretionary", 2947 | "subindustry": "Specialty Stores" 2948 | }, 2949 | { 2950 | "exchange": "NASDAQ", 2951 | "symbol": "SBUX", 2952 | "name":"Starbucks Corp.", 2953 | "industry": "Consumer Discretionary", 2954 | "subindustry": "Restaurants" 2955 | }, 2956 | { 2957 | "exchange": "NYSE", 2958 | "symbol": "HOT", 2959 | "name":"Starwood Hotels & Resorts", 2960 | "industry": "Consumer Discretionary", 2961 | "subindustry": "Hotels, Resorts & Cruise Lines" 2962 | }, 2963 | { 2964 | "exchange": "NYSE", 2965 | "symbol": "STT", 2966 | "name":"State Street Corp.", 2967 | "industry": "Financials", 2968 | "subindustry": "Diversified Financial Services" 2969 | }, 2970 | { 2971 | "exchange": "NASDAQ", 2972 | "symbol": "SRCL", 2973 | "name":"Stericycle Inc", 2974 | "industry": "Industrials", 2975 | "subindustry": "Industrial Conglomerates" 2976 | }, 2977 | { 2978 | "exchange": "NYSE", 2979 | "symbol": "SYK", 2980 | "name":"Stryker Corp.", 2981 | "industry": "Health Care", 2982 | "subindustry": "Health Care Equipment & Services" 2983 | }, 2984 | { 2985 | "exchange": "NYSE", 2986 | "symbol": "STI", 2987 | "name":"SunTrust Banks", 2988 | "industry": "Financials", 2989 | "subindustry": "Banks" 2990 | }, 2991 | { 2992 | "exchange": "NASDAQ", 2993 | "symbol": "SYMC", 2994 | "name":"Symantec Corp.", 2995 | "industry": "Information Technology", 2996 | "subindustry": "Application Software" 2997 | }, 2998 | { 2999 | "exchange": "NYSE", 3000 | "symbol": "SYY", 3001 | "name":"Sysco Corp.", 3002 | "industry": "Consumer Staples", 3003 | "subindustry": "Food Distributors" 3004 | }, 3005 | { 3006 | "exchange": "NASDAQ", 3007 | "symbol": "TROW", 3008 | "name":"T. Rowe Price Group", 3009 | "industry": "Financials", 3010 | "subindustry": "Diversified Financial Services" 3011 | }, 3012 | { 3013 | "exchange": "NYSE", 3014 | "symbol": "TGT", 3015 | "name":"Target Corp.", 3016 | "industry": "Consumer Discretionary", 3017 | "subindustry": "General Merchandise Stores" 3018 | }, 3019 | { 3020 | "exchange": "NYSE", 3021 | "symbol": "TEL", 3022 | "name":"TE Connectivity|TE Connectivity Ltd.", 3023 | "industry": "Information Technology", 3024 | "subindustry": "Electronic Equipment & Instruments" 3025 | }, 3026 | { 3027 | "exchange": "NYSE", 3028 | "symbol": "TE", 3029 | "name":"TECO Energy", 3030 | "industry": "Utilities", 3031 | "subindustry": "Electric Utilities" 3032 | }, 3033 | { 3034 | "exchange": "NYSE", 3035 | "symbol": "THC", 3036 | "name":"Tenet Healthcare Corp.", 3037 | "industry": "Health Care", 3038 | "subindustry": "Health Care Facilities" 3039 | }, 3040 | { 3041 | "exchange": "NYSE", 3042 | "symbol": "TDC", 3043 | "name":"Teradata Corp.", 3044 | "industry": "Information Technology", 3045 | "subindustry": "Application Software" 3046 | }, 3047 | { 3048 | "exchange": "NYSE", 3049 | "symbol": "TSO", 3050 | "name":"Tesoro Petroleum Co.", 3051 | "industry": "Energy", 3052 | "subindustry": "Oil & Gas Refining & Marketing & Transportation" 3053 | }, 3054 | { 3055 | "exchange": "NASDAQ", 3056 | "symbol": "TXN", 3057 | "name":"Texas Instruments", 3058 | "industry": "Information Technology", 3059 | "subindustry": "Semiconductors" 3060 | }, 3061 | { 3062 | "exchange": "NYSE", 3063 | "symbol": "TXT", 3064 | "name":"Textron Inc.", 3065 | "industry": "Industrials", 3066 | "subindustry": "Industrial Conglomerates" 3067 | }, 3068 | { 3069 | "exchange": "NYSE", 3070 | "symbol": "HSY", 3071 | "name":"The Hershey Company", 3072 | "industry": "Consumer Staples", 3073 | "subindustry": "Packaged Foods & Meats" 3074 | }, 3075 | { 3076 | "exchange": "NYSE", 3077 | "symbol": "TRV", 3078 | "name":"The Travelers Companies Inc.", 3079 | "industry": "Financials", 3080 | "subindustry": "Property & Casualty Insurance" 3081 | }, 3082 | { 3083 | "exchange": "NYSE", 3084 | "symbol": "TMO", 3085 | "name":"Thermo Fisher Scientific", 3086 | "industry": "Health Care", 3087 | "subindustry": "Health Care Equipment & Services" 3088 | }, 3089 | { 3090 | "exchange": "NYSE", 3091 | "symbol": "TIF", 3092 | "name":"Tiffany & Co.", 3093 | "industry": "Consumer Discretionary", 3094 | "subindustry": "Apparel, Accessories & Luxury Goods" 3095 | }, 3096 | { 3097 | "exchange": "NYSE", 3098 | "symbol": "TWX", 3099 | "name":"Time Warner Inc.", 3100 | "industry": "Consumer Discretionary", 3101 | "subindustry": "Broadcasting & Cable TV" 3102 | }, 3103 | { 3104 | "exchange": "NYSE", 3105 | "symbol": "TWC", 3106 | "name":"Time Warner Cable Inc.", 3107 | "industry": "Consumer Discretionary", 3108 | "subindustry": "Broadcasting & Cable TV" 3109 | }, 3110 | { 3111 | "exchange": "NYSE", 3112 | "symbol": "TJX", 3113 | "name":"TJX Companies Inc.", 3114 | "industry": "Consumer Discretionary", 3115 | "subindustry": "Apparel Retail" 3116 | }, 3117 | { 3118 | "exchange": "NYSE", 3119 | "symbol": "TMK", 3120 | "name":"Torchmark Corp.", 3121 | "industry": "Financials", 3122 | "subindustry": "Life & Health Insurance" 3123 | }, 3124 | { 3125 | "exchange": "NYSE", 3126 | "symbol": "TSS", 3127 | "name":"Total System Services", 3128 | "industry": "Information Technology", 3129 | "subindustry": "Internet Software & Services" 3130 | }, 3131 | { 3132 | "exchange": "NASDAQ", 3133 | "symbol": "TSCO", 3134 | "name":"Tractor Supply Company", 3135 | "industry": "Consumer Discretionary", 3136 | "subindustry": "Specialty Retail" 3137 | }, 3138 | { 3139 | "exchange": "NYSE", 3140 | "symbol": "RIG", 3141 | "name":"Transocean", 3142 | "industry": "Energy", 3143 | "subindustry": "Oil & Gas Drilling" 3144 | }, 3145 | { 3146 | "exchange": "NASDAQ", 3147 | "symbol": "TRIP", 3148 | "name":"TripAdvisor", 3149 | "industry": "Consumer Discretionary", 3150 | "subindustry": "Internet Retail" 3151 | }, 3152 | { 3153 | "exchange": "NASDAQ", 3154 | "symbol": "FOXA", 3155 | "name":"Twenty-First Century Fox", 3156 | "industry": "Consumer Discretionary", 3157 | "subindustry": "Publishing" 3158 | }, 3159 | { 3160 | "exchange": "NYSE", 3161 | "symbol": "TSN", 3162 | "name":"Tyson Foods", 3163 | "industry": "Consumer Staples", 3164 | "subindustry": "Packaged Foods & Meats" 3165 | }, 3166 | { 3167 | "exchange": "NYSE", 3168 | "symbol": "TYC", 3169 | "name":"Tyco International", 3170 | "industry": "Industrials", 3171 | "subindustry": "Industrial Conglomerates" 3172 | }, 3173 | { 3174 | "exchange": "NYSE", 3175 | "symbol": "USB", 3176 | "name":"U.S. Bancorp", 3177 | "industry": "Financials", 3178 | "subindustry": "Banks" 3179 | }, 3180 | { 3181 | "exchange": "NYSE", 3182 | "symbol": "UA", 3183 | "name":"Under Armour", 3184 | "industry": "Consumer Discretionary", 3185 | "subindustry": "Apparel, Accessories & Luxury Goods" 3186 | }, 3187 | { 3188 | "exchange": "NYSE", 3189 | "symbol": "UNP", 3190 | "name":"Union Pacific", 3191 | "industry": "Industrials", 3192 | "subindustry": "Railroads" 3193 | }, 3194 | { 3195 | "exchange": "NYSE", 3196 | "symbol": "UNH", 3197 | "name":"United Health Group Inc.", 3198 | "industry": "Health Care", 3199 | "subindustry": "Managed Health Care" 3200 | }, 3201 | { 3202 | "exchange": "NYSE", 3203 | "symbol": "UPS", 3204 | "name":"United Parcel Service", 3205 | "industry": "Industrials", 3206 | "subindustry": "Air Freight & Logistics" 3207 | }, 3208 | { 3209 | "exchange": "NYSE", 3210 | "symbol": "URI", 3211 | "name":"United Rentals|United Rentals, Inc.", 3212 | "industry": "Industrials", 3213 | "subindustry": "Trading Companies & Distributors" 3214 | }, 3215 | { 3216 | "exchange": "NYSE", 3217 | "symbol": "UTX", 3218 | "name":"United Technologies", 3219 | "industry": "Industrials", 3220 | "subindustry": "Industrial Conglomerates" 3221 | }, 3222 | { 3223 | "exchange": "NYSE", 3224 | "symbol": "UHS", 3225 | "name":"Universal Health Services|Universal Health Services, Inc.", 3226 | "industry": "Health Care", 3227 | "subindustry": "Health Care Facilities" 3228 | }, 3229 | { 3230 | "exchange": "NYSE", 3231 | "symbol": "UNM", 3232 | "name":"Unum Group", 3233 | "industry": "Financials", 3234 | "subindustry": "Diversified Financial Services" 3235 | }, 3236 | { 3237 | "exchange": "NASDAQ", 3238 | "symbol": "URBN", 3239 | "name":"Urban Outfitters", 3240 | "industry": "Consumer Discretionary", 3241 | "subindustry": "Apparel Retail" 3242 | }, 3243 | { 3244 | "exchange": "NYSE", 3245 | "symbol": "VFC", 3246 | "name":"V.F. Corp.", 3247 | "industry": "Consumer Discretionary", 3248 | "subindustry": "Apparel, Accessories & Luxury Goods" 3249 | }, 3250 | { 3251 | "exchange": "NYSE", 3252 | "symbol": "VLO", 3253 | "name":"Valero Energy", 3254 | "industry": "Energy", 3255 | "subindustry": "Oil & Gas Refining & Marketing & Transportation" 3256 | }, 3257 | { 3258 | "exchange": "NYSE", 3259 | "symbol": "VAR", 3260 | "name":"Varian Medical Systems", 3261 | "industry": "Health Care", 3262 | "subindustry": "Health Care Equipment & Services" 3263 | }, 3264 | { 3265 | "exchange": "NYSE", 3266 | "symbol": "VTR", 3267 | "name":"Ventas Inc", 3268 | "industry": "Financials", 3269 | "subindustry": "Diversified Financial Services" 3270 | }, 3271 | { 3272 | "exchange": "NASDAQ", 3273 | "symbol": "VRSN", 3274 | "name":"Verisign Inc.", 3275 | "industry": "Information Technology", 3276 | "subindustry": "Internet Software & Services" 3277 | }, 3278 | { 3279 | "exchange": "NYSE", 3280 | "symbol": "VZ", 3281 | "name":"Verizon Communications", 3282 | "industry": "Telecommunications Services", 3283 | "subindustry": "Integrated Telecommunications Services" 3284 | }, 3285 | { 3286 | "exchange": "NASDAQ", 3287 | "symbol": "VRTX", 3288 | "name":"Vertex Pharmaceuticals|Vertex Pharmaceuticals Inc", 3289 | "industry": "Health Care", 3290 | "subindustry": "Biotechnology" 3291 | }, 3292 | { 3293 | "exchange": "NASDAQ", 3294 | "symbol": "VIAB", 3295 | "name":"Viacom Inc.", 3296 | "industry": "Consumer Discretionary", 3297 | "subindustry": "Broadcasting & Cable TV" 3298 | }, 3299 | { 3300 | "exchange": "NYSE", 3301 | "symbol": "V", 3302 | "name":"Visa Inc.", 3303 | "industry": "Information Technology", 3304 | "subindustry": "Internet Software & Services" 3305 | }, 3306 | { 3307 | "exchange": "NYSE", 3308 | "symbol": "VNO", 3309 | "name":"Vornado Realty Trust", 3310 | "industry": "Financials", 3311 | "subindustry": "REITs" 3312 | }, 3313 | { 3314 | "exchange": "NYSE", 3315 | "symbol": "VMC", 3316 | "name":"Vulcan Materials", 3317 | "industry": "Materials", 3318 | "subindustry": "Construction Materials" 3319 | }, 3320 | { 3321 | "exchange": "NYSE", 3322 | "symbol": "WMT", 3323 | "name":"Wal-Mart Stores", 3324 | "industry": "Consumer Staples", 3325 | "subindustry": "Hypermarkets & Super Centers" 3326 | }, 3327 | { 3328 | "exchange": "NYSE", 3329 | "symbol": "WBA", 3330 | "name":"Walgreens Boots Alliance", 3331 | "industry": "Consumer Staples", 3332 | "subindustry": "Drug Retail" 3333 | }, 3334 | { 3335 | "exchange": "NYSE", 3336 | "symbol": "DIS", 3337 | "name":"The Walt Disney Company", 3338 | "industry": "Consumer Discretionary", 3339 | "subindustry": "Broadcasting & Cable TV" 3340 | }, 3341 | { 3342 | "exchange": "NYSE", 3343 | "symbol": "WM", 3344 | "name":"Waste Management Inc.", 3345 | "industry": "Industrials", 3346 | "subindustry": "Environmental Services" 3347 | }, 3348 | { 3349 | "exchange": "NYSE", 3350 | "symbol": "WAT", 3351 | "name":"Waters Corporation", 3352 | "industry": "Health Care", 3353 | "subindustry": "Health Care Distributors & Services" 3354 | }, 3355 | { 3356 | "exchange": "NYSE", 3357 | "symbol": "ANTM", 3358 | "name":"Anthem Inc.", 3359 | "industry": "Health Care", 3360 | "subindustry": "Managed Health Care" 3361 | }, 3362 | { 3363 | "exchange": "NYSE", 3364 | "symbol": "WFC", 3365 | "name":"Wells Fargo", 3366 | "industry": "Financials", 3367 | "subindustry": "Banks" 3368 | }, 3369 | { 3370 | "exchange": "NASDAQ", 3371 | "symbol": "WDC", 3372 | "name":"Western Digital", 3373 | "industry": "Information Technology", 3374 | "subindustry": "Computer Storage & Peripherals" 3375 | }, 3376 | { 3377 | "exchange": "NYSE", 3378 | "symbol": "WU", 3379 | "name":"Western Union Co", 3380 | "industry": "Information Technology", 3381 | "subindustry": "Internet Software & Services" 3382 | }, 3383 | { 3384 | "exchange": "NYSE", 3385 | "symbol": "WY", 3386 | "name":"Weyerhaeuser Corp.", 3387 | "industry": "Financials", 3388 | "subindustry": "REITs" 3389 | }, 3390 | { 3391 | "exchange": "NYSE", 3392 | "symbol": "WHR", 3393 | "name":"Whirlpool Corp.", 3394 | "industry": "Consumer Discretionary", 3395 | "subindustry": "Household Appliances" 3396 | }, 3397 | { 3398 | "exchange": "NASDAQ", 3399 | "symbol": "WFM", 3400 | "name":"Whole Foods Market", 3401 | "industry": "Consumer Staples", 3402 | "subindustry": "Food Retail" 3403 | }, 3404 | { 3405 | "exchange": "NYSE", 3406 | "symbol": "WMB", 3407 | "name":"Williams Cos.", 3408 | "industry": "Energy", 3409 | "subindustry": "Oil & Gas Exploration & Production" 3410 | }, 3411 | { 3412 | "exchange": "NASDAQ", 3413 | "symbol": "WIN", 3414 | "name":"Windstream Communications", 3415 | "industry": "Telecommunications Services", 3416 | "subindustry": "Integrated Telecommunications Services" 3417 | }, 3418 | { 3419 | "exchange": "NYSE", 3420 | "symbol": "WEC", 3421 | "name":"Wisconsin Energy Corporation", 3422 | "industry": "Utilities", 3423 | "subindustry": "Electric Utilities" 3424 | }, 3425 | { 3426 | "exchange": "NYSE", 3427 | "symbol": "WYN", 3428 | "name":"Wyndham Worldwide", 3429 | "industry": "Consumer Discretionary", 3430 | "subindustry": "Hotels, Resorts & Cruise Lines" 3431 | }, 3432 | { 3433 | "exchange": "NASDAQ", 3434 | "symbol": "WYNN", 3435 | "name":"Wynn Resorts Ltd", 3436 | "industry": "Consumer Discretionary", 3437 | "subindustry": "Casinos & Gaming" 3438 | }, 3439 | { 3440 | "exchange": "NYSE", 3441 | "symbol": "XEL", 3442 | "name":"Xcel Energy Inc", 3443 | "industry": "Utilities", 3444 | "subindustry": "MultiUtilities" 3445 | }, 3446 | { 3447 | "exchange": "NYSE", 3448 | "symbol": "XRX", 3449 | "name":"Xerox Corp.", 3450 | "industry": "Information Technology", 3451 | "subindustry": "IT Consulting & Services" 3452 | }, 3453 | { 3454 | "exchange": "NASDAQ", 3455 | "symbol": "XLNX", 3456 | "name":"Xilinx Inc", 3457 | "industry": "Information Technology", 3458 | "subindustry": "Semiconductors" 3459 | }, 3460 | { 3461 | "exchange": "NYSE", 3462 | "symbol": "XL", 3463 | "name":"XL Capital", 3464 | "industry": "Financials", 3465 | "subindustry": "Property & Casualty Insurance" 3466 | }, 3467 | { 3468 | "exchange": "NYSE", 3469 | "symbol": "XYL", 3470 | "name":"Xylem Inc.", 3471 | "industry": "Industrials", 3472 | "subindustry": "Industrial Conglomerates" 3473 | }, 3474 | { 3475 | "exchange": "NASDAQ", 3476 | "symbol": "YHOO", 3477 | "name":"Yahoo Inc.", 3478 | "industry": "Information Technology", 3479 | "subindustry": "Internet Software & Services" 3480 | }, 3481 | { 3482 | "exchange": "NYSE", 3483 | "symbol": "YUM", 3484 | "name":"Yum! Brands Inc", 3485 | "industry": "Consumer Discretionary", 3486 | "subindustry": "Restaurants" 3487 | }, 3488 | { 3489 | "exchange": "NYSE", 3490 | "symbol": "ZMH", 3491 | "name":"Zimmer Holdings", 3492 | "industry": "Health Care", 3493 | "subindustry": "Health Care Equipment & Services" 3494 | }, 3495 | { 3496 | "exchange": "NASDAQ", 3497 | "symbol": "ZION", 3498 | "name":"Zions Bancorp", 3499 | "industry": "Financials", 3500 | "subindustry": "Banks" 3501 | }, 3502 | { 3503 | "exchange": "NYSE", 3504 | "symbol": "ZTS", 3505 | "name":"Zoetis", 3506 | "industry": "Health Care", 3507 | "subindustry": "Pharmaceuticals" 3508 | } 3509 | ] 3510 | --------------------------------------------------------------------------------