-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsortedBySymbol.json
More file actions
16036 lines (16036 loc) · 389 KB
/
sortedBySymbol.json
File metadata and controls
16036 lines (16036 loc) · 389 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"Symbol": "AAAP",
"Name": "Advanced Accelerator Applications S.A.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AAL",
"Name": "American Airlines Group, Inc.",
"Sector": "Transportation",
"Industry": "Air Freight/Delivery Services"
}, {
"Symbol": "AAME",
"Name": "Atlantic American Corporation",
"Sector": "Finance",
"Industry": "Life Insurance"
}, {
"Symbol": "AAOI",
"Name": "Applied Optoelectronics, Inc.",
"Sector": "Technology",
"Industry": "Semiconductors"
}, {
"Symbol": "AAON",
"Name": "AAON, Inc.",
"Sector": "Capital Goods",
"Industry": "Industrial Machinery/Components"
}, {
"Symbol": "AAPC",
"Name": "Atlantic Alliance Partnership Corp.",
"Sector": "Consumer Services",
"Industry": "Services-Misc. Amusement & Recreation"
}, {
"Symbol": "AAPL",
"Name": "Apple Inc.",
"Sector": "Technology",
"Industry": "Computer Manufacturing"
}, {
"Symbol": "AAWW",
"Name": "Atlas Air Worldwide Holdings",
"Sector": "Transportation",
"Industry": "Transportation Services"
}, {
"Symbol": "AAXJ",
"Name": "iShares MSCI All Country Asia ex Japan Index Fund",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "AAXN",
"Name": "Axon Enterprise, Inc.",
"Sector": "Capital Goods",
"Industry": "Ordnance And Accessories"
}, {
"Symbol": "ABAC",
"Name": "Aoxin Tianli Group, Inc.",
"Sector": "Consumer Non-Durables",
"Industry": "Farming/Seeds/Milling"
}, {
"Symbol": "ABAX",
"Name": "ABAXIS, Inc.",
"Sector": "Capital Goods",
"Industry": "Industrial Machinery/Components"
}, {
"Symbol": "ABCB",
"Name": "Ameris Bancorp",
"Sector": "Finance",
"Industry": "Major Banks"
}, {
"Symbol": "ABCD",
"Name": "Cambium Learning Group, Inc.",
"Sector": "Consumer Services",
"Industry": "Publishing"
}, {
"Symbol": "ABCO",
"Name": "The Advisory Board Company",
"Sector": "Consumer Services",
"Industry": "Other Consumer Services"
}, {
"Symbol": "ABDC",
"Name": "Alcentra Capital Corp.",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ABEO",
"Name": "Abeona Therapeutics Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ABEOW",
"Name": "Abeona Therapeutics Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ABIL",
"Name": "Ability Inc.",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "ABIO",
"Name": "ARCA biopharma, Inc.",
"Sector": "Health Care",
"Industry": "Biotechnology: In Vitro & In Vivo Diagnostic Substances"
}, {
"Symbol": "ABMD",
"Name": "ABIOMED, Inc.",
"Sector": "Health Care",
"Industry": "Medical/Dental Instruments"
}, {
"Symbol": "ABTL",
"Name": "Autobytel Inc.",
"Sector": "Technology",
"Industry": "Computer Software: Programming Data Processing"
}, {
"Symbol": "ABTX",
"Name": "Allegiance Bancshares, Inc.",
"Sector": "Finance",
"Industry": "Major Banks"
}, {
"Symbol": "ABUS",
"Name": "Arbutus Biopharma Corporation",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ABY",
"Name": "Atlantica Yield plc",
"Sector": "Public Utilities",
"Industry": "Electric Utilities: Central"
}, {
"Symbol": "ACAD",
"Name": "ACADIA Pharmaceuticals Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ACBI",
"Name": "Atlantic Capital Bancshares, Inc.",
"Sector": "Finance",
"Industry": "Major Banks"
}, {
"Symbol": "ACCP",
"Name": "Accelerated Pharma, Inc.",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ACET",
"Name": "Aceto Corporation",
"Sector": "Health Care",
"Industry": "Other Pharmaceuticals"
}, {
"Symbol": "ACFC",
"Name": "Atlantic Coast Financial Corporation",
"Sector": "Finance",
"Industry": "Savings Institutions"
}, {
"Symbol": "ACGL",
"Name": "Arch Capital Group Ltd.",
"Sector": "Finance",
"Industry": "Property-Casualty Insurers"
}, {
"Symbol": "ACGLP",
"Name": "Arch Capital Group Ltd.",
"Sector": "Finance",
"Industry": "Property-Casualty Insurers"
}, {
"Symbol": "ACHC",
"Name": "Acadia Healthcare Company, Inc.",
"Sector": "Health Care",
"Industry": "Medical Specialities"
}, {
"Symbol": "ACHN",
"Name": "Achillion Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ACIA",
"Name": "Acacia Communications, Inc.",
"Sector": "Technology",
"Industry": "Semiconductors"
}, {
"Symbol": "ACIU",
"Name": "AC Immune SA",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ACIW",
"Name": "ACI Worldwide, Inc.",
"Sector": "Technology",
"Industry": "Computer Software: Prepackaged Software"
}, {
"Symbol": "ACLS",
"Name": "Axcelis Technologies, Inc.",
"Sector": "Technology",
"Industry": "Industrial Machinery/Components"
}, {
"Symbol": "ACNB",
"Name": "ACNB Corporation",
"Sector": "Finance",
"Industry": "Major Banks"
}, {
"Symbol": "ACOR",
"Name": "Acorda Therapeutics, Inc.",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "ACRS",
"Name": "Aclaris Therapeutics, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ACRX",
"Name": "AcelRx Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ACSF",
"Name": "American Capital Senior Floating, Ltd.",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ACST",
"Name": "Acasti Pharma, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ACTA",
"Name": "Actua Corporation",
"Sector": "Technology",
"Industry": "EDP Services"
}, {
"Symbol": "ACTG",
"Name": "Acacia Research Corporation",
"Sector": "Miscellaneous",
"Industry": "Multi-Sector Companies"
}, {
"Symbol": "ACTX",
"Name": "Global X Guru Activist ETF",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ACWI",
"Name": "iShares MSCI ACWI Index Fund",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ACWX",
"Name": "iShares MSCI ACWI ex US Index Fund",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ACXM",
"Name": "Acxiom Corporation",
"Sector": "Technology",
"Industry": "EDP Services"
}, {
"Symbol": "ADAP",
"Name": "Adaptimmune Therapeutics plc",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "ADBE",
"Name": "Adobe Systems Incorporated",
"Sector": "Technology",
"Industry": "Computer Software: Prepackaged Software"
}, {
"Symbol": "ADES",
"Name": "Advanced Emissions Solutions, Inc.",
"Sector": "Basic Industries",
"Industry": "Major Chemicals"
}, {
"Symbol": "ADHD",
"Name": "Alcobra Ltd.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ADI",
"Name": "Analog Devices, Inc.",
"Sector": "Technology",
"Industry": "Semiconductors"
}, {
"Symbol": "ADMA",
"Name": "ADMA Biologics Inc",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "ADMP",
"Name": "Adamis Pharmaceuticals Corporation",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ADMS",
"Name": "Adamas Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ADP",
"Name": "Automatic Data Processing, Inc.",
"Sector": "Technology",
"Industry": "EDP Services"
}, {
"Symbol": "ADRA",
"Name": "BLDRS Asia 50 ADR Index Fund",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ADRD",
"Name": "BLDRS Developed Markets 100 ADR Index Fund",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ADRE",
"Name": "BLDRS Emerging Markets 50 ADR Index Fund",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ADRO",
"Name": "Aduro Biotech, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ADRU",
"Name": "BLDRS Europe 100 ADR Index Fund",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ADSK",
"Name": "Autodesk, Inc.",
"Sector": "Technology",
"Industry": "Computer Software: Prepackaged Software"
}, {
"Symbol": "ADTN",
"Name": "ADTRAN, Inc.",
"Sector": "Public Utilities",
"Industry": "Telecommunications Equipment"
}, {
"Symbol": "ADUS",
"Name": "Addus HomeCare Corporation",
"Sector": "Health Care",
"Industry": "Medical/Nursing Services"
}, {
"Symbol": "ADVM",
"Name": "Adverum Biotechnologies, Inc.",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "ADXS",
"Name": "Advaxis, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ADXSW",
"Name": "Advaxis, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AEGN",
"Name": "Aegion Corp",
"Sector": "Basic Industries",
"Industry": "Water Supply"
}, {
"Symbol": "AEHR",
"Name": "Aehr Test Systems",
"Sector": "Capital Goods",
"Industry": "Electrical Products"
}, {
"Symbol": "AEIS",
"Name": "Advanced Energy Industries, Inc.",
"Sector": "Capital Goods",
"Industry": "Industrial Machinery/Components"
}, {
"Symbol": "AEMD",
"Name": "Aethlon Medical, Inc.",
"Sector": "Capital Goods",
"Industry": "Biotechnology: Laboratory Analytical Instruments"
}, {
"Symbol": "AERI",
"Name": "Aerie Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "AETI",
"Name": "American Electric Technologies, Inc.",
"Sector": "Energy",
"Industry": "Industrial Machinery/Components"
}, {
"Symbol": "AEY",
"Name": "ADDvantage Technologies Group, Inc.",
"Sector": "Consumer Services",
"Industry": "Office Equipment/Supplies/Services"
}, {
"Symbol": "AEZS",
"Name": "AEterna Zentaris Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AFAM",
"Name": "Almost Family Inc",
"Sector": "Health Care",
"Industry": "Medical/Nursing Services"
}, {
"Symbol": "AFH",
"Name": "Atlas Financial Holdings, Inc.",
"Sector": "Finance",
"Industry": "Property-Casualty Insurers"
}, {
"Symbol": "AFMD",
"Name": "Affimed N.V.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AFSI",
"Name": "AmTrust Financial Services, Inc.",
"Sector": "Finance",
"Industry": "Property-Casualty Insurers"
}, {
"Symbol": "AGEN",
"Name": "Agenus Inc.",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "AGFS",
"Name": "AgroFresh Solutions, Inc.",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "AGFSW",
"Name": "AgroFresh Solutions, Inc.",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "AGII",
"Name": "Argo Group International Holdings, Ltd.",
"Sector": "Finance",
"Industry": "Specialty Insurers"
}, {
"Symbol": "AGIIL",
"Name": "Argo Group International Holdings, Ltd.",
"Sector": "Finance",
"Industry": "Specialty Insurers"
}, {
"Symbol": "AGIO",
"Name": "Agios Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AGLE",
"Name": "Aeglea BioTherapeutics, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AGNC",
"Name": "AGNC Investment Corp.",
"Sector": "Consumer Services",
"Industry": "Real Estate Investment Trusts"
}, {
"Symbol": "AGNCB",
"Name": "AGNC Investment Corp.",
"Sector": "Consumer Services",
"Industry": "Real Estate Investment Trusts"
}, {
"Symbol": "AGNCP",
"Name": "AGNC Investment Corp.",
"Sector": "Consumer Services",
"Industry": "Real Estate Investment Trusts"
}, {
"Symbol": "AGND",
"Name": "WisdomTree Barclays Negative Duration U.S. Aggregate Bond Fund",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "AGRX",
"Name": "Agile Therapeutics, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AGTC",
"Name": "Applied Genetic Technologies Corporation",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "AGYS",
"Name": "Agilysys, Inc.",
"Sector": "Technology",
"Industry": "EDP Services"
}, {
"Symbol": "AGZD",
"Name": "WisdomTree Barclays Interest Rate Hedged U.S. Aggregate Bond F",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "AHGP",
"Name": "Alliance Holdings GP, L.P.",
"Sector": "Energy",
"Industry": "Coal Mining"
}, {
"Symbol": "AHPA",
"Name": "Avista Healthcare Public Acquisition Corp.",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "AHPAU",
"Name": "Avista Healthcare Public Acquisition Corp.",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "AHPAW",
"Name": "Avista Healthcare Public Acquisition Corp.",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "AHPI",
"Name": "Allied Healthcare Products, Inc.",
"Sector": "Health Care",
"Industry": "Industrial Specialties"
}, {
"Symbol": "AIA",
"Name": "iShares Asia 50 ETF",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "AIMC",
"Name": "Altra Industrial Motion Corp.",
"Sector": "Capital Goods",
"Industry": "Industrial Machinery/Components"
}, {
"Symbol": "AIMT",
"Name": "Aimmune Therapeutics, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AINV",
"Name": "Apollo Investment Corporation",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "AIQ",
"Name": "Alliance HealthCare Services, Inc.",
"Sector": "Health Care",
"Industry": "Medical Specialities"
}, {
"Symbol": "AIRG",
"Name": "Airgain, Inc.",
"Sector": "Technology",
"Industry": "Radio And Television Broadcasting And Communications Equipment"
}, {
"Symbol": "AIRR",
"Name": "First Trust RBA American Industrial Renaissance ETF",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "AIRT",
"Name": "Air T, Inc.",
"Sector": "Transportation",
"Industry": "Air Freight/Delivery Services"
}, {
"Symbol": "AKAM",
"Name": "Akamai Technologies, Inc.",
"Sector": "Miscellaneous",
"Industry": "Business Services"
}, {
"Symbol": "AKAO",
"Name": "Achaogen, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AKBA",
"Name": "Akebia Therapeutics, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AKER",
"Name": "Akers Biosciences Inc",
"Sector": "Health Care",
"Industry": "Biotechnology: In Vitro & In Vivo Diagnostic Substances"
}, {
"Symbol": "AKRX",
"Name": "Akorn, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AKTS",
"Name": "Akoustis Technologies, Inc.",
"Sector": "Public Utilities",
"Industry": "Telecommunications Equipment"
}, {
"Symbol": "AKTX",
"Name": "Akari Therapeutics Plc",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ALBO",
"Name": "Albireo Pharma, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ALCO",
"Name": "Alico, Inc.",
"Sector": "Consumer Non-Durables",
"Industry": "Farming/Seeds/Milling"
}, {
"Symbol": "ALDR",
"Name": "Alder BioPharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ALDX",
"Name": "Aldeyra Therapeutics, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ALGN",
"Name": "Align Technology, Inc.",
"Sector": "Health Care",
"Industry": "Industrial Specialties"
}, {
"Symbol": "ALGT",
"Name": "Allegiant Travel Company",
"Sector": "Transportation",
"Industry": "Air Freight/Delivery Services"
}, {
"Symbol": "ALIM",
"Name": "Alimera Sciences, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ALJJ",
"Name": "ALJ Regional Holdings, Inc.",
"Sector": "Miscellaneous",
"Industry": "Business Services"
}, {
"Symbol": "ALKS",
"Name": "Alkermes plc",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ALLT",
"Name": "Allot Communications Ltd.",
"Sector": "Technology",
"Industry": "Computer Communications Equipment"
}, {
"Symbol": "ALNY",
"Name": "Alnylam Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ALOG",
"Name": "Analogic Corporation",
"Sector": "Capital Goods",
"Industry": "Electrical Products"
}, {
"Symbol": "ALOT",
"Name": "AstroNova, Inc.",
"Sector": "Technology",
"Industry": "Computer peripheral equipment"
}, {
"Symbol": "ALQA",
"Name": "Alliqua BioMedical, Inc.",
"Sector": "Health Care",
"Industry": "Medical/Dental Instruments"
}, {
"Symbol": "ALRM",
"Name": "Alarm.com Holdings, Inc.",
"Sector": "Technology",
"Industry": "Computer Software: Prepackaged Software"
}, {
"Symbol": "ALSK",
"Name": "Alaska Communications Systems Group, Inc.",
"Sector": "Public Utilities",
"Industry": "Telecommunications Equipment"
}, {
"Symbol": "ALT",
"Name": "Altimmune, Inc.",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ALTY",
"Name": "Global X SuperDividend Alternatives ETF",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "ALXN",
"Name": "Alexion Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AMAG",
"Name": "AMAG Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AMAT",
"Name": "Applied Materials, Inc.",
"Sector": "Technology",
"Industry": "Semiconductors"
}, {
"Symbol": "AMBA",
"Name": "Ambarella, Inc.",
"Sector": "Technology",
"Industry": "Semiconductors"
}, {
"Symbol": "AMBC",
"Name": "Ambac Financial Group, Inc.",
"Sector": "Finance",
"Industry": "Property-Casualty Insurers"
}, {
"Symbol": "AMBCW",
"Name": "Ambac Financial Group, Inc.",
"Sector": "Finance",
"Industry": "Property-Casualty Insurers"
}, {
"Symbol": "AMCN",
"Name": "AirMedia Group Inc",
"Sector": "Technology",
"Industry": "Advertising"
}, {
"Symbol": "AMCX",
"Name": "AMC Networks Inc.",
"Sector": "Consumer Services",
"Industry": "Television Services"
}, {
"Symbol": "AMD",
"Name": "Advanced Micro Devices, Inc.",
"Sector": "Technology",
"Industry": "Semiconductors"
}, {
"Symbol": "AMDA",
"Name": "Amedica Corporation",
"Sector": "Health Care",
"Industry": "Medical/Dental Instruments"
}, {
"Symbol": "AMED",
"Name": "Amedisys Inc",
"Sector": "Health Care",
"Industry": "Medical/Nursing Services"
}, {
"Symbol": "AMGN",
"Name": "Amgen Inc.",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "AMKR",
"Name": "Amkor Technology, Inc.",
"Sector": "Technology",
"Industry": "Semiconductors"
}, {
"Symbol": "AMMA",
"Name": "Alliance MMA, Inc.",
"Sector": "Consumer Services",
"Industry": "Services-Misc. Amusement & Recreation"
}, {
"Symbol": "AMNB",
"Name": "American National Bankshares, Inc.",
"Sector": "Finance",
"Industry": "Major Banks"
}, {
"Symbol": "AMOT",
"Name": "Allied Motion Technologies, Inc.",
"Sector": "Capital Goods",
"Industry": "Electrical Products"
}, {
"Symbol": "AMOV",
"Name": "America Movil, S.A.B. de C.V.",
"Sector": "Public Utilities",
"Industry": "Telecommunications Equipment"
}, {
"Symbol": "AMPH",
"Name": "Amphastar Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AMRB",
"Name": "American River Bankshares",
"Sector": "Finance",
"Industry": "Major Banks"
}, {
"Symbol": "AMRI",
"Name": "Albany Molecular Research, Inc.",
"Sector": "Health Care",
"Industry": "Biotechnology: Commercial Physical & Biological Resarch"
}, {
"Symbol": "AMRK",
"Name": "A-Mark Precious Metals, Inc.",
"Sector": "Basic Industries",
"Industry": "Other Specialty Stores"
}, {
"Symbol": "AMRN",
"Name": "Amarin Corporation plc",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "AMRS",
"Name": "Amyris, Inc.",
"Sector": "Basic Industries",
"Industry": "Major Chemicals"
}, {
"Symbol": "AMSC",
"Name": "American Superconductor Corporation",
"Sector": "Consumer Durables",
"Industry": "Metal Fabrications"
}, {
"Symbol": "AMSF",
"Name": "AMERISAFE, Inc.",
"Sector": "Finance",
"Industry": "Property-Casualty Insurers"
}, {
"Symbol": "AMSWA",
"Name": "American Software, Inc.",
"Sector": "Technology",
"Industry": "Computer Software: Prepackaged Software"
}, {
"Symbol": "AMTD",
"Name": "TD Ameritrade Holding Corporation",
"Sector": "Finance",
"Industry": "Investment Bankers/Brokers/Service"
}, {
"Symbol": "AMTX",
"Name": "Aemetis, Inc",
"Sector": "Basic Industries",
"Industry": "Major Chemicals"
}, {
"Symbol": "AMWD",
"Name": "American Woodmark Corporation",
"Sector": "Basic Industries",
"Industry": "Forest Products"
}, {
"Symbol": "AMZN",
"Name": "Amazon.com, Inc.",
"Sector": "Consumer Services",
"Industry": "Catalog/Specialty Distribution"
}, {
"Symbol": "ANAB",
"Name": "AnaptysBio, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ANAT",
"Name": "American National Insurance Company",
"Sector": "Finance",
"Industry": "Life Insurance"
}, {
"Symbol": "ANCB",
"Name": "Anchor Bancorp",
"Sector": "Finance",
"Industry": "Banks"
}, {
"Symbol": "ANCX",
"Name": "Access National Corporation",
"Sector": "Finance",
"Industry": "Savings Institutions"
}, {
"Symbol": "ANDA",
"Name": "Andina Acquisition Corp. II",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "ANDAR",
"Name": "Andina Acquisition Corp. II",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "ANDAU",
"Name": "Andina Acquisition Corp. II",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "ANDAW",
"Name": "Andina Acquisition Corp. II",
"Sector": "Finance",
"Industry": "Business Services"
}, {
"Symbol": "ANDE",
"Name": "The Andersons, Inc.",
"Sector": "Consumer Services",
"Industry": "Farming/Seeds/Milling"
}, {
"Symbol": "ANGI",
"Name": "Angie's List, Inc.",
"Sector": "Consumer Services",
"Industry": "Advertising"
}, {
"Symbol": "ANGO",
"Name": "AngioDynamics, Inc.",
"Sector": "Health Care",
"Industry": "Medical/Dental Instruments"
}, {
"Symbol": "ANIK",
"Name": "Anika Therapeutics Inc.",
"Sector": "Health Care",
"Industry": "Medical/Dental Instruments"
}, {
"Symbol": "ANIP",
"Name": "ANI Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ANSS",
"Name": "ANSYS, Inc.",
"Sector": "Technology",
"Industry": "Computer Software: Prepackaged Software"
}, {
"Symbol": "ANTH",
"Name": "Anthera Pharmaceuticals, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "ANY",
"Name": "Sphere 3D Corp.",
"Sector": "Technology",
"Industry": "EDP Services"
}, {
"Symbol": "AOBC",
"Name": "American Outdoor Brands Corporation",
"Sector": "Capital Goods",
"Industry": "Ordnance And Accessories"
}, {
"Symbol": "AOSL",
"Name": "Alpha and Omega Semiconductor Limited",
"Sector": "Technology",
"Industry": "Semiconductors"
}, {
"Symbol": "APDN",
"Name": "Applied DNA Sciences Inc",
"Sector": "Consumer Services",
"Industry": "Other Consumer Services"
}, {
"Symbol": "APDNW",
"Name": "Applied DNA Sciences Inc",
"Sector": "Consumer Services",
"Industry": "Other Consumer Services"
}, {
"Symbol": "APEI",
"Name": "American Public Education, Inc.",
"Sector": "Consumer Services",
"Industry": "Other Consumer Services"
}, {
"Symbol": "APEN",
"Name": "Apollo Endosurgery, Inc.",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "APLP",
"Name": "Archrock Partners, L.P.",
"Sector": "Public Utilities",
"Industry": "Natural Gas Distribution"
}, {
"Symbol": "APOG",
"Name": "Apogee Enterprises, Inc.",
"Sector": "Capital Goods",
"Industry": "Auto Parts:O.E.M."
}, {
"Symbol": "APOP",
"Name": "Cellect Biotechnology Ltd.",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "APOPW",
"Name": "Cellect Biotechnology Ltd.",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "APPF",
"Name": "AppFolio, Inc.",
"Sector": "Technology",
"Industry": "Computer Software: Prepackaged Software"
}, {
"Symbol": "APPS",
"Name": "Digital Turbine, Inc.",
"Sector": "Miscellaneous",
"Industry": "Multi-Sector Companies"
}, {
"Symbol": "APRI",
"Name": "Apricus Biosciences, Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "APTI",
"Name": "Apptio, Inc.",
"Sector": "Technology",
"Industry": "Computer Software: Prepackaged Software"
}, {
"Symbol": "APTO",
"Name": "Aptose Biosciences, Inc.",
"Sector": "Health Care",
"Industry": "Biotechnology: Biological Products (No Diagnostic Substances)"
}, {
"Symbol": "APVO",
"Name": "Aptevo Therapeutics Inc.",
"Sector": "Health Care",
"Industry": "Major Pharmaceuticals"
}, {
"Symbol": "APWC",
"Name": "Asia Pacific Wire & Cable Corporation Limited",
"Sector": "Basic Industries",
"Industry": "Telecommunications Equipment"
}, {
"Symbol": "AQB",
"Name": "AquaBounty Technologies, Inc.",
"Sector": "n/a",
"Industry": "n/a"
}, {
"Symbol": "AQMS",
"Name": "Aqua Metals, Inc.",
"Sector": "Basic Industries",
"Industry": "Metal Fabrications"