forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path247wallst.com1.html
More file actions
1246 lines (1098 loc) · 73.1 KB
/
Copy path247wallst.com1.html
File metadata and controls
1246 lines (1098 loc) · 73.1 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
<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" class="no-js ie6" xmlns:fb="http://ogp.me/ns/fb#"
lang="en">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" class="no-js ie7" xmlns:fb="http://ogp.me/ns/fb#"
lang="en">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" class="no-js ie8" xmlns:fb="http://ogp.me/ns/fb#"
lang="en">
<![endif]-->
<!--[if IE 9]>
<html id="ie9" class="no-js ie9" xmlns:fb="http://ogp.me/ns/fb#"
lang="en">
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) | !(IE 9) ]><!-->
<html class="no-js" xmlns:fb="http://ogp.me/ns/fb#"
lang="en">
<!--<![endif]-->
<head profile="http://gmpg.org/xfn/11">
<title> The 4 Stocks That Slimmed the DJIA Monday Slide - Home Depot (NYSE:HD) - 24/7 Wall St.</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<!-- Facebook -->
<meta property="og:site_name" content="247wallst.com" />
<meta property="og:type" content="website" />
<meta property="og:title" content="The 4 Stocks That Slimmed the DJIA Monday Slide" />
<meta property="og:url" content="http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/" />
<meta property="og:image" content="https://247wallst.files.wordpress.com/2012/10/stylized_stock_ticker.jpeg?w=400" />
<meta property="fb:admins" content="1637394913,9110202" />
<meta property="fb:app_id" content="209662835720614" />
<!-- START Parse.ly Meta -->
<meta name='parsely-page' content='{"title":"The 4 Stocks That Slimmed the DJIA Monday Slide","image_url":"https:\/\/247wallst.files.wordpress.com\/2012\/10\/stylized_stock_ticker.jpeg?w=400","link":"http:\/\/247wallst.com\/investing\/2014\/12\/29\/the-4-stocks-that-slimmed-the-djia-monday-slide\/","type":"post","post_id":253612,"tags":["market close","BA","CSCO","HD","JPM"],"author":"Paul Ausick","section":"Investing","pub_date":"2014-12-29T21:08:14Z"}'>
<!-- END Parse.ly Meta -->
<!--[if IE]>
<link rel="stylesheet" href="http://s0.wp.com/wp-content/themes/vip/247wallst/ie-print.css?m=1320342806g" type="text/css" media="print"/>
<![endif]-->
<!--[if lte IE 7>
<link rel="stylesheet" href="http://s0.wp.com/wp-content/themes/vip/247wallst/ie.css" type="text/css" />
<![endif]-->
<script>
var wp_template_dir="http://s0.wp.com/wp-content/themes/vip/247wallst";
var wp_current_page="http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/";
var tb_pathToImage="http://247wallst.wordpress.com/wp-includes/js/thickbox/loadingAnimation.gif?m=1354137473g";
var tb_closeImage="http://247wallst.wordpress.com/wp-includes/js/thickbox/tb-close.png?m=1354137473g";
var adscripts = {};
var adblocks = {};
</script>
<link rel="shortcut icon" type="image/x-icon" href="http://s0.wp.com/wp-content/themes/vip/247wallst/favicon.ico?m=1234195507g" />
<script src='//r-login.wordpress.com/remote-login.php?action=js&host=247wallst.com&id=5450697&t=1420285695&back=http%3A%2F%2F247wallst.com%2Finvesting%2F2014%2F12%2F29%2Fthe-4-stocks-that-slimmed-the-djia-monday-slide%2F' type="text/javascript"></script>
<script type="text/javascript">
/* <![CDATA[ */
if ( 'function' === typeof WPRemoteLogin ) {
document.cookie = "wordpress_test_cookie=test; path=/";
if ( document.cookie.match( /(;|^)\s*wordpress_test_cookie\=/ ) ) {
WPRemoteLogin();
}
}
/* ]]> */
</script>
<script type="text/javascript">
/* <![CDATA[ */
function addLoadEvent(func){var oldonload=window.onload;if(typeof window.onload!='function'){window.onload=func;}else{window.onload=function(){oldonload();func();}}}
/* ]]> */
</script>
<link rel='stylesheet' id='all-css-0' href='http://s0.wp.com/_static/??-eJydkd1ugzAMhV9oqUeHWu1i2rOEYMDg/Aibdn37BdCYqm5I203kY3/HiR24JuNiUAwKfjKJp5aCgHhivKUx9uj0Xh2cyBP8bGMaUKBHTdYNZlEbTsHxVOdyTkBtpaPcQA6ewiPSC2iuD1X82IK9e10cMed9sjoTHmuyyOgztmfz6fTlmsMuP1oeeO1yH4ELJTiW56tllrwRvTH+ARVYlWnQ6jRi/R+v+mZvGvSxp/VcMYIQddnyFuz5W4yGo7NKMdwJ07Clcc86YsWxzWG7/O63/G3MroSWY2V5Bt79W1EWr8fT+eW56D8BydH1xg==' type='text/css' media='all' />
<link rel='stylesheet' id='print-css-0' href='http://s1.wp.com/wp-content/themes/vip/247wallst/print.css?m=1320342806g' type='text/css' media='print' />
<script type='text/javascript'>
/* <![CDATA[ */
var thickboxL10n = {"next":"Next >","prev":"< Prev","image":"Image","of":"of","close":"Close","noiframes":"This feature requires inline frames. You have iframes disabled or your browser does not support them.","loadingAnimation":"http:\/\/s1.wp.com\/wp-includes\/js\/thickbox\/loadingAnimation.gif"};
var thickboxL10n = {"next":"Next >","prev":"< Prev","image":"Image","of":"of","close":"Close","noiframes":"This feature requires inline frames. You have iframes disabled or your browser does not support them.","loadingAnimation":"http:\/\/s1.wp.com\/wp-includes\/js\/thickbox\/loadingAnimation.gif"};
/* ]]> */
</script>
<script type='text/javascript' src='http://s1.wp.com/_static/??-eJyNj90OgjAMRl/IMTAkeGN8lgEVOvbnuoH69A6jRA0JXrVpT3q+8smxxpoAJnBJXNsaFbBI4EWXZgzN2WaSdjxxaBoVW6AZlJcI/vYqmwDT2HkRINNo3vCH1VkKGoiScmX7rUIzIkybmITgRDMwD4R3WAsYemyG2l6X5vdm6CGF4iM6vi+rSShFgTsVOzTE7QheiUU3CoXt/OAs/evQ820XXYJP+liURVXmeVUd5AOKupW/'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://247wallst.wordpress.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://s1.wp.com/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='Flex Pharma Files for IPO' href='http://247wallst.com/healthcare-business/2014/12/29/flex-pharma-files-for-ipo/' />
<link rel='next' title='The 52-Week Low Club for Monday' href='http://247wallst.com/investing/2014/12/29/the-52-week-low-club-for-monday-19/' />
<meta name="generator" content="WordPress.com" />
<link rel='canonical' href='http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/' />
<link rel='shortlink' href='http://wp.me/pmRYt-13Yw' />
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/1.0/?format=json&url=http%3A%2F%2F247wallst.com%2Finvesting%2F2014%2F12%2F29%2Fthe-4-stocks-that-slimmed-the-djia-monday-slide%2F&for=wpcom-auto-discovery" /><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/1.0/?format=xml&url=http%3A%2F%2F247wallst.com%2Finvesting%2F2014%2F12%2F29%2Fthe-4-stocks-that-slimmed-the-djia-monday-slide%2F&for=wpcom-auto-discovery" /><link rel='openid.server' href='http://247wallst.wordpress.com/?openidserver=1' />
<link rel='openid.delegate' href='http://247wallst.wordpress.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="http://247wallst.com/osd.xml" title="24/7 Wall St." />
<link rel="search" type="application/opensearchdescription+xml" href="http://wordpress.com/opensearch.xml" title="WordPress.com" />
<script type='text/javascript'>
window.wallst = {};
window.wallst.getParams = function() {
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for (var i = 0; i < hashes.length; i++) {
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
wallst.setCookie = function(key, days, value) {
var d = new Date();
d.setTime(d.getTime() + (days * 24 * 60 * 60 * 1000));
if( !value ) value = "true";
var cookie = key + '='+value+'; expires=' + d.toGMTString() + '; path=/';
document.cookie = cookie;
}
wallst.readCookie = function(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return 'false';
}
wallst.cookies_enabled = function() {
document.cookie = "cookietest=true";
return (wallst.readCookie("cookietest") == "true");
}
wallst._debug_catfish = false;
wallst.ok_to_catfish = function() {
if( wallst._debug_catfish ) return true;
//
if( !wallst.cookies_enabled() ) return false;
// block in media.net's interstitial
if ( 'undefined' !== typeof window._mNInslDisplay && true == window._mNInslDisplay ) return false;
if( wallst.readCookie('247TMF-catfish') == "false" ) return true;
//
return false;
}
wallst.init_catfish = function( creative, background, click_url, args ) {
creative = creative || false;
background = background || false;
click_url = click_url || false;
args = args || {};
// set background
jQuery( '#tmf-catfish' ).css( 'background', 'url("' + background +'")' );
// set the click through url
jQuery( '#tmf-catfish-link' ).attr( 'href', click_url );
// may not need this
jQuery( '#tmf-catfish-content' ).data( 'url', click_url );
// set the image
jQuery( '#tmf-catfish-image' ).attr( 'src', creative );
// wire up the cancel 'x'
jQuery( '#tmf-catfish-cancel' ).click( function() {
jQuery( '#tmf-catfish' ).animate( { 'marginBottom': '-250' }, 500 );
} );
// allow creative to override height
if ( 'height' in args ) {
jQuery( '#tmf-catfish' ).css( 'height', args['height'] );
}
}
wallst.show_catfish = function() {
jQuery('#tmf-catfish-button').click( wallst.click_catfish );
jQuery('#tmf-catfish-cancel').click( wallst.close_catfish );
jQuery('#tmf-catfish').show();
jQuery('#tmf-catfish').animate({ 'marginBottom': '0' }, 500 );
wallst.setCookie( '247TMF-catfish', 2, 'true' );
track( 'Catfish View', '247TMF-catfish', 'Catfish has been viewed' );
}
wallst.close_catfish = function() {
jQuery('#tmf-catfish').animate({ 'marginBottom': '-250' }, 500);
}
wallst.click_catfish = function( event ) {
window.location.href = jQuery('#tmf-catfish-content').data('url');
}
wallst.init_flags = function() {
var params = wallst.getParams();
if( "debug_catfish" in params ) wallst._debug_catfish = true;
}
wallst.init_flags();
</script>
<meta name="news_keywords" content="market close, The Boeing Company (NYSE:BA),Cisco Systems, Inc. (NASDAQ:CSCO),Home Depot (NYSE:HD),JPMorgan Chase & Co. (NYSE:JPM)"/> <script type="text/javascript">
(function(c, a) {
window.mixpanel = a;
var b, d, h, e;
b = c.createElement("script");
b.type = "text/javascript";
b.async = !0;
b.src = ("https:" === c.location.protocol ? "https:" : "http:") + '//g.foolcdn.com/js/lib/mixpanel-2.2.min.js';
d = c.getElementsByTagName( "script" )[0];
d.parentNode.insertBefore(b, d);
a._i = [];
a.init = function(b, c, f) {
function d(a, b) {
var c = b.split(".");
2 == c.length && (a = a[c[0]], b = c[1]);
a[b] = function() {
a.push([b].concat(
Array.prototype.slice.call(arguments, 0)))
}
}
var g = a;
"undefined" !== typeof f ? g = a[f] = [] : f = "mixpanel";
g.people = g.people || [];
h = ['disable', 'track', 'track_pageview', 'track_links',
'track_forms', 'register', 'register_once', 'unregister',
'identify', 'alias', 'name_tag', 'set_config','people.set',
'people.set_once', 'people.increment', 'people.track_charge',
'people.append' ];
for (e = 0; e < h.length; e++) d(g, h[e]);
a._i.push([b, c, f])
};
a.__SV = 1.2;
})(document, window.mixpanel || []);
mixpanel.init( "9659875b92ba8fa639ba476aedbb73b9" );
mixpanel.set_config( { track_pageview: false } );
</script>
<script type="text/javascript">
window._mNHandle = window._mNHandle || {};
window._mNHandle.queue = window._mNHandle.queue || [];
medianet_versionId = "121199";
(function() {
var sct = document.createElement("script"),
sctHl = document.getElementsByTagName("script")[0],
isSSL = 'https:' == document.location.protocol;
sct.type = "text/javascript";
sct.src = (isSSL ? 'https:' : 'http:') + '//contextual.media.net/dmedianet.js?cid=8CUD54534' + (isSSL ? '&https=1' : '')+'';
sct.async = "async";
sctHl.parentNode.insertBefore(sct, sctHl);
})();
</script>
<script type="text/javascript">
(function() {
var src = '//www.googletagservices.com/tag/js/gpt.js';
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
})(); </script> <script type="text/javascript" >
(function() {
var src = '//ox-d.247wallst.servedbyopenx.com/w/1.0/jstag?&nc=1016069-247wallst';
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
})();
</script>
<script type='text/javascript'>
googletag.cmd.push( function() {
var dfp_pub_service = googletag.pubads();
dfp_pub_service.setTargeting( "Section", "Investing" );
dfp_pub_service.setTargeting( "Archive", "no" );
dfp_pub_service.setTargeting( "slug", "tocks-that-slimmed-the-djia-monday-slide" );
dfp_pub_service.setTargeting( "Ticker", ["BA","CSCO","HD","JPM"] );
dfp_pub_service.setTargeting( "text_src", "247" );
googletag.defineSlot( "/1016069/247WS_Investing_Leaderboard_1_728x90_ATF",[728,90] ,"dfp-leaderboard").addService( dfp_pub_service );
googletag.defineSlot( "/1016069/247WS_Investing_In-Text_Box_1_300x250_ATF",[300,250] ,"dfp-in-text").addService( dfp_pub_service );
googletag.defineSlot( "/1016069/247WS_Investing_Right-Rail_Box_1_300x250_ATF",[[300,250],[300,600]] ,"dfp-sidebar-1").addService( dfp_pub_service );
googletag.defineSlot( "/1016069/247WS_Investing_Right-Rail_Box_2_300x250_BTF",[300,250] ,"dfp-sidebar-2").addService( dfp_pub_service );
googletag.defineSlot( "/1016069/247WS_Investing_Skyscraper_1_160x600_BTF",[160,600] ,"dfp-skyscraper").addService( dfp_pub_service );
googletag.defineSlot( "/1016069/24//7_Below_Single_Content_5x5",[645,330] ,"dfp-below-single-content").addService( dfp_pub_service );
googletag.defineSlot( "/1016069/24//7_Popup_1x1",[1,1] ,"dfp-popup").addService( dfp_pub_service );
if ( wallst.ok_to_catfish() ) {
googletag.defineSlot('/1016069/24//7_catfish_7x7', [ 7, 7 ], 'dfp-catfish' ).addService( dfp_pub_service );
}
googletag.enableServices();
});
</script>
<meta name="application-name" content="24/7 Wall St." /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-tooltip" content="Insightful Analysis and Commentary for U.S. and Global Equity Investors" /><meta name="msapplication-task" content="name=Subscribe;action-uri=http://247wallst.com/feed/;icon-uri=http://s2.wp.com/i/favicon.ico" /><style type="text/css" id="syntaxhighlighteranchor"></style>
<link rel="alternate" type="application/rss+xml" href="http://247wallst.com/feed/" title="24/7 Wall St. latest posts" />
<link rel="alternate" type="application/rss+xml" href="http://247wallst.com/comments/feed/" title="24/7 Wall St. latest comments" />
<link rel="pingback" href="http://247wallst.com/xmlrpc.php" />
<meta name="verify-v1" content="IODtZuG2ioY7pGg0quJbNSfBusGQMgChxukhNrOGdN4=" />
<meta name="description" content="Source: thinkstockDecember 28, 2014: Markets opened lower on Monday as neither the bulls nor the bears can gin up a lot of support. Volumes are low and corporate news is nearly non-existent. Crude oil started the day higher, but has drifted to a loss of about 2% as the day wore on. Shortly before the […] " />
<meta name="keywords" content="Investing, BA, BA stock, BA ticker, BA news, CSCO, CSCO stock, CSCO ticker, CSCO news, HD, HD stock, HD ticker, HD news, JPM, JPM stock, JPM ticker, JPM news, market close" />
<link rel="stylesheet" type="text/css" href="http://s0.wp.com/wp-content/themes/vip/247wallst/js/tabs/tabcontent.css?m=1233777247g" />
<script type="text/javascript" src="http://s0.wp.com/wp-content/themes/vip/247wallst/js/tabs/tabcontent.js?m=1233777247g">
/***********************************************
* Tab Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
<script>
var checkobj
function agreesubmit(el){
checkobj=el
if (document.all||document.getElementById){
for (i=0;i<checkobj.form.length;i++){ //hunt down submit button
var tempobj=checkobj.form.elements[i]
if(tempobj.type.toLowerCase()=="submit")
tempobj.disabled=!checkobj.checked
}
}
}
function defaultagree(el){
if (!document.all&&!document.getElementById){
if (window.checkobj&&checkobj.checked)
return true
else{
alert("Please read/accept terms to submit form")
return false
}
}
}
</script>
<!-- Begin comScore Tag -->
<script>
var _comscore = _comscore || [];
_comscore.push({ c1: "2", c2: "16807273" });
(function() {
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);
})();
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=16807273&cv=2.0&cj=1" />
</noscript>
<!-- End comScore Tag -->
<!-- bit.ly tweet and track -->
<script type="text/javascript" charset="utf-8" src="http://bit.ly/javascript-api.js?version=latest&login=tweettrackjs&apiKey=R_7e9987b2fd13d7e4e881f9cbb168f523"></script>
<script type="text/javascript">
function getUrlVars() {
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for (var i = 0; i < hashes.length; i++) {
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
function _stackinput(t) { t.style.zIndex=!!t.value*150; return true; }
function get_set_email(form) {
var $form = jQuery(form);
var email_address, endpoint, redir;
email_address = $form.find('[name="recipient_email"]').val();
endpoint = $form.find('[name="custom_validation_redir"]').val();
redir = $form.find('[name="custom_end_location"]');
if(email_address.trim) email_address = email_address.trim();
else if(email_address.replace) email_address = email_address.replace(/^\s*(.+)\s*$/, '$1');
if(email_address.match(/^\s*$/) || !email_address.match(/^\S+@\S+\.\S+$/)) {
$form.find('.form_email').addClass('invalid');
$form.find('.form_email .message').text("Invalid email address");
return false;
}
redir.val(redir.val() + '?email=' + email_address + "&src=" + endpoint);
wallst.setCookie("newsletter-signup", 365);
return true;
}
var setup_email_field = function() {
var $ = jQuery;
$(window).keydown(function(ev) {
if(ev.keyCode == 27 && window.parent.tb_remove)
window.parent.tb_remove();
});
var reset_invalid = function() {
$(this).parents('.form_email').removeClass('invalid');
$(this).parents('.form_email').find('.message').text('');
}
$('.form_email input[name="recipient_email"]').keydown(reset_invalid).focus(reset_invalid);
};
jQuery(setup_email_field);
function submit_newsletter_email_signup(form, referrer) {
if(typeof track == "function")
track("Newsletter Signup", form.custom2.value, "Newsletter has been subscribed to from " + referrer);
return get_set_email(form);
}
</script>
<!-- tracking -->
<!-- Start Google Analytics -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker;
function track(c, n, d) {
if(typeof(pageTracker) != "undefined" && pageTracker._trackEvent)
pageTracker._trackEvent(c, n, d);
}
try {
pageTracker = _gat._createTracker( "UA-681032-2" );
pageTracker._setCustomVar( 2, 'author', 'Paul Ausick' );
pageTracker._setCustomVar( 3, 'section', 'Investing' );
pageTracker._setCustomVar( 4, 'terms', 'market close,BA,CSCO,HD,JPM' );
pageTracker._trackPageview();
} catch(err) {}
</script>
<!-- End Google Analytics -->
<!-- Woopra Code Start -->
<script type="text/javascript" src="//static.woopra.com/js/woopra.v2.js"></script>
<script type="text/javascript">
woopraTracker.track();
</script>
<!-- Woopra Code End -->
<!-- Quantcast Tag -->
<script type="text/javascript">
var _qevents = _qevents || [];
(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
elem.async = true;
elem.type = "text/javascript";
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();
_qevents.push({ qacct:"p-5eXb5_gO3-h6w" });
</script>
<noscript>
<div style="display:none;">
<img src="//pixel.quantserve.com/pixel/p-5eXb5_gO3-h6w.gif" border="0" height="1" width="1" alt="Quantcast"/>
</div>
</noscript>
<!-- End Quantcast tag -->
<!-- Omniture -->
<script type="text/javascript">
bN_cfg = {h: "localhost,247wallst.com"};
function runOmni()
{
s_265.pfxID="prf";
s_265.channel="us.247wallst";
s_265.linkInternalFilters="javascript:,247wallst.com";
s_265.prop1="24/7 Wallstreet";
s_265.mmxgo=true;
s_265.pageName=document.title;
var s_code=s_265.t();
}
s_265_account ="aolprt,aolsvc";
(function(){
var d = document, s = d.createElement('script');
s.type = 'text/javascript';
s.src = (location.protocol == 'https:' ? 'https://s' : 'http://o') + '.aolcdn.com/os_merge/?file=/aol/beacon.min.js&file=/aol/omniture.min.js';
d.getElementsByTagName('head')[0].appendChild(s);
})();
</script>
<!-- End Omniture -->
<!-- start Tynt -->
<script type="text/javascript">tyntVariables = {"ap":"Read more: "};</script>
<script type="text/javascript" src="http://tcr.tynt.com/javascripts/Tracer.js?user=deb6QsC_Cr3702adbi-bpO&st=1"></script>
<!-- end Tynt -->
<!-- aol ads -->
<script type="text/javascript">
// supress error when including in header
var atwMN = '';
// set a default
top.aol_devil_flag = false;
// update styling of ad slots in right rail if Devil runs
if( 'function' == typeof jQuery ) {
jQuery(document).ready( function() {
if( top.aol_devil_flag ) {
jQuery('li.box-ad').css('height', 'auto');
jQuery('li.skyscraper div.list').css('width','auto');
jQuery('li.skyscraper div.list ul li').css('width','auto');
}
});
}
</script>
<script type="text/javascript" src="http://o.aolcdn.com/ads/adsWrapper.js"></script>
<script type="text/javascript">
//adSetAdURL("http://247wallst.com/_uac/adpage.html");
</script>
<!-- Turns the "no-js" class on the html to "js" without using jQuery or anything else -->
<script type="text/javascript">
(function(d,c){d[c]=d[c].replace(/\bno-js\b/, "js");})(document.documentElement,"className");
</script>
</head>
<body class="wordpress y2015 m01 d03 h06 single postid-253612 s-author- mp6 typekit-enabled">
<!--
<script>
window.Meebo||function(c){function p(){return["<",i,' onload="var d=',g,";d.getElementsByTagName('head')[0].",
j,"(d.",h,"('script')).",k,"='//cim.meebo.com/cim?iv=",a.v,"&",q,"=",c[q],c[l]?
"&"+l+"="+c[l]:"",c[e]?"&"+e+"="+c[e]:"","'\"></",i,">"].join("")}var f=window,
a=f.Meebo=f.Meebo||function(){(a._=a._||[]).push(arguments)},d=document,i="body",
m=d[i],r;if(!m){r=arguments.callee;return setTimeout(function(){r(c)},100)}a.$=
{0:+new Date};a.T=function(u){a.$[u]=new Date-a.$[0]};a.v=4;var j="appendChild",
h="createElement",k="src",l="lang",q="network",e="domain",n=d[h]("div"),v=n[j](d[h]("m")),
b=d[h]("iframe"),g="document",o,s=function(){a.T("load");a("load")};f.addEventListener?
f.addEventListener("load",s,false):f.attachEvent("onload",s);n.style.display="none";
m.insertBefore(n,m.firstChild).id="meebo";b.frameBorder="0";b.id="meebo-iframe";
b.allowTransparency="true";v[j](b);try{b.contentWindow[g].open()}catch(w){c[e]=
d[e];o="javascript:var d="+g+".open();d.domain='"+d.domain+"';";b[k]=o+"void(0);"}try{var t=
b.contentWindow[g];t.write(p());t.close()}catch(x){b[k]=o+'d.write("'+p().replace(/"/g,
'\\"')+'");d.close();'}a.T(1)}({network:"247wallst"});
</script>
-->
<div id="wrapper" class="hfeed">
<div id="header">
<div id="headerbar">
<div id="subheader">
<div id="site-title" itemscope itemtype="http://schema.org/Organization">
<a href="http://247wallst.com" itemprop="url" href="" onclick='track("Menu Click", "home", "Clicked on logo to go home")' title="24/7 Wall St. - Insightful Analysis and Commentary for U.S. and Global Equity Investors">
<span>24/7 Wall St. - Insightful Analysis and Commentary for U.S. and Global Equity Investors</span>
</a>
<meta itemprop="logo" content="http://s0.wp.com/wp-content/themes/vip/247wallst/images/logo-square.png?m=1391152626g"/>
</div>
<div class="aol-dev-mark" id="ad-header" addesc="header ad" adid="header" onclick="pageTracker._trackEvent('Header ad', 'Header-Ad', 'User has clicked on Top Leader Board ad');">
<div id="dfp-leaderboard">
<script type="text/javascript">googletag.cmd.push(function() { googletag.display( "dfp-leaderboard" ); });</script>
</div>
</div>
</div><!-- #subheader-->
</div><!-- #headerbar-->
<div id="navbar">
<div id="navigation">
<div id="navwrap">
<ul id="navleft">
<script>if(typeof _stackinput == "undefined") _stackinput = function(t) { t.style.zIndex=!!t.value*150; return true; }</script>
<li id="search" rel="search">
<form style='display: inline' id="searchform" class="blog-search" method="get" onsubmit="track && track('Searched', 'search', 'User has submitted search for ' + this.s.value)" action="http://247wallst.com">
<div class="form_labelinput">
<input type="text" name="s" id="searchbox" onblur="_stackinput(this)" onfocus="this.style.zIndex=150" />
<label for="searchbox">Search this site</label>
</div>
<input type='image' src='http://s0.wp.com/wp-content/themes/vip/247wallst/images/search-icon.png?m=1383943811g' width='24' height='24' value='Search' class='submit' />
</form>
</li>
<li id="menu-item-208013" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-208013"><a href="http://247wallst.com/business/">Business</a>
<ul class="sub-menu">
<li id="menu-item-208014" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208014"><a href="http://247wallst.com/./aerospace-defense/">Aerospace & Defense</a></li>
<li id="menu-item-208015" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208015"><a href="http://247wallst.com/./autos/">Autos</a></li>
<li id="menu-item-208016" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208016"><a href="http://247wallst.com/./banking-finance/">Banking & Finance</a></li>
<li id="menu-item-208017" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208017"><a href="http://247wallst.com/./commodities-metals/">Commodities & Metals</a></li>
<li id="menu-item-208018" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208018"><a href="http://247wallst.com/./consumer-products/">Consumer Products</a></li>
<li id="menu-item-208019" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208019"><a href="http://247wallst.com/./energy-business/">Energy</a></li>
<li id="menu-item-208020" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208020"><a href="http://247wallst.com/./healthcare-business/">Healthcare</a></li>
<li id="menu-item-208100" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208100"><a href="http://247wallst.com/./industrials/">Industrials</a></li>
<li id="menu-item-208101" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208101"><a href="http://247wallst.com/./infrastructure/">Infrastructure</a></li>
<li id="menu-item-208021" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208021"><a href="http://247wallst.com/./media/">Media</a></li>
<li id="menu-item-208022" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208022"><a href="http://247wallst.com/./retail/">Retail</a></li>
<li id="menu-item-208102" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208102"><a href="http://247wallst.com/./services/">Services</a></li>
</ul>
</li>
<li id="menu-item-208023" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-208023"><a href="http://247wallst.com/./technology-3/">Technology</a>
<ul class="sub-menu">
<li id="menu-item-208027" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208027"><a href="http://247wallst.com/./apps-software/">Apps & Software</a></li>
<li id="menu-item-208028" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208028"><a href="http://247wallst.com/./consumer-electronics/">Consumer Electronics</a></li>
<li id="menu-item-208029" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208029"><a href="http://247wallst.com/./telecom-wireless/">Telecom & Wireless</a></li>
<li id="menu-item-208024" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-208024"><a href="http://247wallst.com/companies/aapl/">Apple Inc.</a></li>
<li id="menu-item-208026" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-208026"><a href="http://247wallst.com/companies/fb/">Facebook</a></li>
<li id="menu-item-208025" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-208025"><a href="http://247wallst.com/companies/goog/">Google</a></li>
</ul>
</li>
<li id="menu-item-208030" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-has-children menu-item-208030"><a href="http://247wallst.com/./investing/">Investing</a>
<ul class="sub-menu">
<li id="menu-item-208031" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208031"><a href="http://247wallst.com/topics/analyst-upgrades/">Analyst Upgrades</a></li>
<li id="menu-item-208032" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208032"><a href="http://247wallst.com/topics/bankruptcy/">Bankruptcy</a></li>
<li id="menu-item-208033" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208033"><a href="http://247wallst.com/topics/warren-buffett/">Buffett</a></li>
<li id="menu-item-208035" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208035"><a href="http://247wallst.com/topics/corporate-governance/">Corporate Governance</a></li>
<li id="menu-item-208036" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208036"><a href="http://247wallst.com/topics/corporate-performance/">Corporate Performance</a></li>
<li id="menu-item-208037" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208037"><a href="http://247wallst.com/topics/dividends-and-buybacks/">Dividends and Buybacks</a></li>
<li id="menu-item-208038" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208038"><a href="http://247wallst.com/topics/earnings/">Earnings</a></li>
<li id="menu-item-208039" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208039"><a href="http://247wallst.com/topics/etfs-and-mutual-funds/">ETFs and Mutual Funds</a></li>
<li id="menu-item-208040" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208040"><a href="http://247wallst.com/topics/international-markets/">International Markets</a></li>
<li id="menu-item-208041" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208041"><a href="http://247wallst.com/topics/ipos-and-secondaries/">IPOs and Secondaries</a></li>
<li id="menu-item-208042" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208042"><a href="http://247wallst.com/topics/mergers-and-acquisitions/">Mergers and Acquisitions</a></li>
<li id="menu-item-208044" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208044"><a href="http://247wallst.com/topics/personal-finance/">Personal Finance</a></li>
<li id="menu-item-208045" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208045"><a href="http://247wallst.com/topics/rumors/">Rumors</a></li>
<li id="menu-item-208046" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208046"><a href="http://247wallst.com/topics/value-investing/">Value Investing</a></li>
</ul>
</li>
<li id="menu-item-208048" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-208048"><a href="http://247wallst.com/./economy/">Economy</a>
<ul class="sub-menu">
<li id="menu-item-208049" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208049"><a href="http://247wallst.com/./energy-economy/">Energy</a></li>
<li id="menu-item-208056" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208056"><a href="http://247wallst.com/topics/government-regulation/">Government Regulation</a></li>
<li id="menu-item-208050" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208050"><a href="http://247wallst.com/./healthcare-economy/">Healthcare</a></li>
<li id="menu-item-208051" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208051"><a href="http://247wallst.com/./housing/">Housing</a></li>
<li id="menu-item-208052" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-208052"><a href="http://247wallst.com/./jobs/">Jobs</a></li>
</ul>
</li>
<li id="menu-item-208055" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-208055"><a href="http://247wallst.com/./special-report/">Special Report</a>
<ul class="sub-menu">
<li id="menu-item-208058" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208058"><a href="http://247wallst.com/topics/brands-and-products/">Brands and Products</a></li>
<li id="menu-item-208060" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208060"><a href="http://247wallst.com/topics/cities/">Cities</a></li>
<li id="menu-item-208063" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208063"><a href="http://247wallst.com/topics/countries/">Countries</a></li>
<li id="menu-item-208062" class="menu-item menu-item-type-taxonomy menu-item-object-keywords menu-item-208062"><a href="http://247wallst.com/topics/states/">States</a></li>
</ul>
</li>
</ul>
<script>
if(typeof jQuery == "function" && typeof track == "function") {
jQuery('#navleft li').click(function() {
var $t = jQuery(this);
var link = $t.find('a').text();
track("Menu Click", link.toLowerCase().replace(/[^a-z0-9]/i, ' ').replace(/\s+/,'_'),
"Clicked on menu item " + link);
});
}
</script>
</div><!-- #navwrap -->
</div><!-- #navigation -->
</div><!-- #navbar -->
<div id="signupbar">
<div id="signupwrap">
<form id="newsletter-subscribe-597938113" method="post" action="http://www.magnetmail.net/actions/subscription_form_action_24new.cfm" onsubmit="return submit_newsletter_email_signup(this, '')" target="_top">
<!-- New form values -->
<input type="hidden" name="mode" value='' />
<input type="hidden" maxlength="10" value="SA_WALLST" name="user_id" />
<input type="hidden" value="top-nav-email-form" maxlength="100" name="custom2" />
<input type="hidden" value="0" maxlength="1" name="text_only" />
<input type="hidden" value="" name="custom_validation_redir" />
<input type="hidden" name="custom_end_location" value="http://247wallst.wordpress.com/thank-you/" class="redir" />
<!-- end new form values -->
<label for="recipient_email_597938113">Free Daily Newsletter</label>
<input type="text" name="recipient_email" id="recipient_email_597938113" class="recipient_email" onblur="_stackinput(this)" onfocus="this.style.zIndex=150; if(window.parent.cancelPopupClose) window.parent.cancelPopupClose();" >
<button type="submit" name="submit" class='subscribe' value="Subscribe Me!"><span>subscribe</span></button>
<span class="terms"><a href='http://247wallst.com/disclaimer-and-terms-of-use' target='_blank'>Terms & Conditions</a></span>
</form>
<div class="message"></div>
<div class='social'>
<a target="_blank" href='http://www.facebook.com/247WallSt' onclick="pageTracker._trackEvent('Social Icon Click', 'newsletter-facebook', 'User has clicked on Facebook icon');" title='Find us on Facebook'><img src='http://s0.wp.com/wp-content/themes/vip/247wallst/images/social_icons/FaceBook_32x32.png?m=1341282432g' width='32' height='32' alt='Facebook' /></a>
<a target="_blank" href='http://twitter.com/247wallst' onclick="pageTracker._trackEvent('Social Icon Click', 'newsletter-twitter', 'User has clicked on Twitter icon');" title='Follow us on Twitter'><img src='http://s0.wp.com/wp-content/themes/vip/247wallst/images/social_icons/Twitter_32x32.png?m=1341282432g' width='32' height='32' alt='Twitter' /></a>
<a target="_blank" href="https://plus.google.com/109889536671975286106?prsrc=3" rel="publisher" target="_top" style="text-decoration:none;"><img src="//ssl.gstatic.com/images/icons/gplus-32.png" alt="Google+" style="border:0;width:32px;height:32px;"/></a>
<a target="_blank" href='http://feeds.feedburner.com/typepad/RyNm' onclick="pageTracker._trackEvent('Social Icon Click', 'newsletter-rss', 'User has clicked on RSS icon in top-nav-email-form');" title='Subscribe'><img src='http://s0.wp.com/wp-content/themes/vip/247wallst/images/menu/rss.png?m=1391152626g' width='32' height='32' alt='RSS' /></a>
</div><!-- .social -->
</div><!-- #signupwrap -->
</div><!-- #signupbar -->
<div></div>
</div><!-- #header -->
<div class="content">
<div class="primary">
<div class="clearfix"></div>
<div itemscope itemtype="http://schema.org/Article" id="post-253612" class="single-post hentry p1 post publish author-paul-ausick category-investing tag-ba tag-csco tag-hd tag-jpm y2014 m12 d29 h11">
<h1 class="entry-title" itemprop="name">The 4 Stocks That Slimmed the DJIA Monday Slide</h1>
<p class="post-meta">
<span class="byline">By <a class="vcard author url" href="http://247wallst.com/author/paul-ausick/" title="Posts by Paul Ausick" rel="author" itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="fn" itemprop="name">Paul Ausick</span></a></span> <span class="timestamp" itemprop="datePublished" content="2014-12-29T16:08:14+00:00">December 29, 2014 4:08 pm EST</span>
<meta itemprop="dateModified" content="2014-12-29T16:08:14+00:00" />
</p>
<div id="user_controls">
<!-- Print -->
<a class="icons" id="print_button" href="http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/print/" title="print" onclick="pageTracker._trackPageview('/controlclick/print');" target="_blank"><span class="icon_link">Print</span></a>
<!-- AddThis EmailThis Button-->
<span class="addthis_email" onclick="pageTracker._trackPageview('/controlclick/email_this');">
<script type="text/javascript">var addthis_pub = "admin247";</script>
<a class="icons" href="#" id="email_button"
onmouseover="return addthis_open(this, 'email', 'http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/', 'The 4 Stocks That Slimmed the DJIA Monday Slide');"
onmouseout="addthis_close();"
onclick="return addthis_open(this, 'email', 'http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/', 'The 4 Stocks That Slimmed the DJIA Monday Slide');">
<span class="icon_link">Email</span></a>
<script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
</span>
<!-- edit post-->
<div id='fbtweet'>
<div class="icons" id="linkedin_button" onclick="pageTracker._trackPageview('/controlclick/linkedin_share');">
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script>
<script type="in/share" data-counter="right" data-url="http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/"></script>
</div>
<div class="icons" id="tweetmeme_button">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/" data-via="247WallSt" data-related="247WallSt">Tweet</a>
</div>
<div class="icons" id="fblike_button">
<div class="archive_social">
<span class="fblike">
<iframe src="http://www.facebook.com/plugins/like.php?href=http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/&layout=button_count&show_faces=false&width=50&action=like&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true">
</iframe>
</span>
</div> </div>
</div>
</div><!-- /user_controls -->
<div itemprop="articleBody" class="entry-content">
<p><em>December 28, 2014:</em> Markets opened lower on Monday as neither the bulls nor the bears can gin up a lot of support. Volumes are low and corporate news is nearly non-existent. Crude oil started the day higher, but has drifted to a loss of about 2% as the day wore on. Shortly before the closing bell the DJIA traded down 0.08% for the day, the S&P 500 traded up 0.09%, and the Nasdaq Composite traded flat. International Business Machines Corp. (NYSE: IBM) dropped more than 1% today and its high per share price pushed the DJIA lower just as the market closed.</p> <div id="dfp-in-text">
<script type="text/javascript">googletag.cmd.push(function() { googletag.display( "dfp-in-text" ); });</script>
</div>
<p>The DJIA stock posting the largest daily gain ahead of the close Monday was The Home Depot Inc. (NYSE: HD) which traded up 0.87% at $104.64. The stock’s 52-week range is $73.96 to $104.80, and the high was posted early Monday. Trading volume was less than half the daily average of around 5.8 million shares. Reports of solid sales at home improvement stores during the holidays have helped push this stock higher today.</p>
<p>JPMorgan Chase & Co. (NYSE: JPM) traded up 0.77% at $63.03. The stock’s 52-week range is $52.97 to $63.34, and the high was set today. Trading volume was about 50% below the daily average of around 26 million shares. The big bank is one of the underwriters for the IPO of Shake Shack which was announced today.</p>
<p>The Boeing Co. (NYSE: BA) traded higher by 0.71% at $132.57. The stock’s 52-week range is $116.32 to $144.57. Volume was less than half the daily average of around 4.4 million shares. The company held its first test flight on Sunday of a new Air Force Tanker.</p>
<p>Cisco Systems Inc. (NASDAQ: CSCO) traded up 0.48% at $28.49. The stock’s 52-week range is $21.27 to $28.59. Trading volume about 60% below the daily average of around 29 million shares. The stock missed matching its 52-week high by just a couple of pennies and was touted as a Rocket Stock at thestreet.com today.</p>
<p>Of the Dow 30 stocks 13 are set to close higher today and 17 are on track to close lower.</p>
<p><strong><a href="http://247wallst.com/technology-3/2014/12/26/5-top-tech-stocks-for-2015-with-potential-big-catalysts/">ALSO READ: 5 Top Tech Stocks for 2015 With Potential Big Catalysts</a></strong></p>
<p class="byline konafilter">By Paul Ausick</p> </div>
<div id="dfp-below-single-content">
<script type="text/javascript">googletag.cmd.push(function() { googletag.display( "dfp-below-single-content" ); });</script>
</div>
<div id="social_icons_bottom_right">
<!-- RSS -->
<a target="_blank" href='http://feeds.feedburner.com/typepad/RyNm' onclick="pageTracker._trackEvent('Social Icon Click', 'newsletter-rss', 'User has clicked on RSS icon at bottom right of post');" title='Subscribe'><img src='http://s0.wp.com/wp-content/themes/vip/247wallst/images/menu/rss-32px.png?m=1391152626g' width='32' height='32' alt='RSS' /></a>
<!-- Facebook -->
<a target="_blank" href='http://www.facebook.com/247WallSt' onclick="pageTracker._trackEvent('Social Icon Click', 'newsletter-facebook', 'User has clicked on Facebook icon at bottom right of post');" title='Find us on Facebook'><img src='http://s0.wp.com/wp-content/themes/vip/247wallst/images/menu/facebook-32px.png?m=1391152626g' width='32' height='32' alt='Facebook' /></a>
<!-- Twitter -->
<a target="_blank" href='http://twitter.com/247wallst' onclick="pageTracker._trackEvent('Social Icon Click', 'newsletter-twitter', 'User has clicked on Twitter icon at bottom right of post' );" title='Follow us on Twitter'><img src='http://s0.wp.com/wp-content/themes/vip/247wallst/images/menu/twitter-32px.png?m=1391152626g' width='32' height='32' alt='Twitter' /></a>
</div>
<div id="social_icons">
<!-- Yahoo Buzz -->
<a class="icons" href="http://buzz.yahoo.com/submit/?submitUrl=http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/&submitHeadline=The 4 Stocks That Slimmed the DJIA Monday Slide&submitSummary=December 28, 2014: Markets opened lower on Monday as neither the bulls nor the bears can gin up a lot of support. Volumes are low and corporate news is nearly ...&submitCategory=business&submitAssetType=text" onclick="track('Social Icon Click', 'yahoo-buzz', 'User has clicked on Yahoo Buzz icon below article')">
<img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/social_icons/yahoobuzz.gif?m=1234047271g" alt="Yahoo Buzz"/><span class="icon_link">Buzz up!</span></a>
<!-- Digg -->
<a class="icons" href="http://digg.com/submit?phase=2&url=http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/&title=The 4 Stocks That Slimmed the DJIA Monday Slide" title="New" onclick="track('Social Icon Click', 'digg', 'User has clicked on digg icon below article');"><img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/social_icons/digg.png?m=1391152626g" alt="Digg"/><span class="icon_link">Digg</span></a>
<!-- fark-->
<a class="icons" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=The 4 Stocks That Slimmed the DJIA Monday Slide&u=http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/" onclick="track('Social Icon Click', 'fark', 'User has clicked on fark icon below article');"><img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/social_icons/fark.png?m=1391152626g" alt="fark" /><span class="icon_link">Fark</span></a>
<!-- facebook-->
<a class="icons" href="http://www.facebook.com/share.php?u=http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/&t=The 4 Stocks That Slimmed the DJIA Monday Slide" onclick="track('Social Icon Click', 'facebook', 'User has clicked on facebook icon below article');"><img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/social_icons/facebook.png?m=1391152626g" alt="facebook" /><span class="icon_link">Facebook</span></a>
<!-- reddit-->
<span onclick="track('Social Icon Click', 'reddit', 'User has clicked on reddit icon below article');">
<a class="icons" href="http://reddit.com/submit?url=http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/&title=The 4 Stocks That Slimmed the DJIA Monday Slide"> <img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/social_icons/reddit.png?m=1391152626g" alt="tipd" /><span class="icon_link">Reddit</span></a>
</span>
<!-- tumblr-->
<span onclick="track('Social Icon Click', 'tumblr', 'User has clicked on tumblr icon below article');">
<a class="icons" href="http://www.tumblr.com/share?v=3&u=http%3A%2F%2F247wallst.com%2Finvesting%2F2014%2F12%2F29%2Fthe-4-stocks-that-slimmed-the-djia-monday-slide%2F&t=The+4+Stocks+That+Slimmed+the+DJIA+Monday%26nbsp%3BSlide&s=December 28, 2014: Markets opened lower on Monday as neither the bulls nor the bears can gin up a lot of support. Volumes are low and corporate news is nearly non-existent. Crude oil started the day higher, but has drifted to a loss of about 2% as the day wore on. Shortly before the closing […]"> <img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/social_icons/tumblr.gif?m=1234047271g" alt="tumblr" /><span class="icon_link">Tumblr</span></a>
</span>
</div><!-- /social_icons -->
<div id="nav-above" class="navigation" onclick="track('Navigation Click', 'nav-above', 'User has clicked on navigation between social icons and post meta')">
<div class="nav-previous"><a href="http://247wallst.com/healthcare-business/2014/12/29/flex-pharma-files-for-ipo/" rel="prev"><span class="meta-nav">«</span> Flex Pharma Files for IPO</a></div>
<div class="nav-next"><a href="http://247wallst.com/investing/2014/12/29/the-52-week-low-club-for-monday-19/" rel="next">The 52-Week Low Club for Monday <span class="meta-nav">»</span></a></div>
</div>
<div class="entry-meta" onclick="pageTracker._trackPageview('/trackclick/read_more_single');">
Read more: <span itemprop="keywords"><a href="http://247wallst.com/./investing/" rel="category tag">Investing</a>, <a href="http://247wallst.com/topics/market-close/" rel="tag">market close</a>, <a href="http://247wallst.com/companies/ba/" rel="tag">The Boeing Company (NYSE:BA)</a>, <a href="http://247wallst.com/companies/csco/" rel="tag">Cisco Systems, Inc. (NASDAQ:CSCO)</a>, <a href="http://247wallst.com/companies/hd/" rel="tag">Home Depot (NYSE:HD)</a>, <a href="http://247wallst.com/companies/jpm/" rel="tag">JPMorgan Chase & Co. (NYSE:JPM)</a></span>
</div>
<div id="post-footer">
<!-- Yavli -->
<script type="text/javascript" id="havnr_com144">(function(){
var s=document.createElement("script");s.type="text/javascript";
s.async=true;s.src="//havnr.com/144?url="+encodeURIComponent(window.location.href);
var x=document.getElementsByTagName("script")[0];x.parentNode.insertBefore(s,x);})();
</script>
</div><!-- #post-footer-->
</div><!-- .single-post -->
<div id="960878447">
<script type="text/javascript">
try {
window._mNHandle.queue.push(function () {
window._mNDetails.loadTag("960878447", "645x200", "960878447");
});
}
catch (error) {}
</script>
</div>
<div id="733810131">
<script type="text/javascript">
try {
window._mNHandle.queue.push(function () {
window._mNDetails.loadTag("733810131", "645x380", "733810131");
});
}
catch (error) {}
</script>
</div>
<div class="entry-comments">
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = '247wallst';
var disqus_url = 'http://247wallst.com/investing/2014/12/29/the-4-stocks-that-slimmed-the-djia-monday-slide/';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
</div><!-- .primary-->
<div class="secondary">
<div id="col3">
<ul class="xoxo">
<li class="iframe-ad sidebar right-sidebar-ad-2 box-ad">
<div id="dfp-sidebar-1">
<script type="text/javascript">googletag.cmd.push(function() { googletag.display( "dfp-sidebar-1" ); });</script>
</div>
</li>
<li class="iframe-ad sidebar box-ad" id="right-sidebar-ad-1" addesc="first ad in right sidebar">
<div id="dfp-sidebar-2">
<script type="text/javascript">googletag.cmd.push(function() { googletag.display( "dfp-sidebar-2" ); });</script>
</div>
</li>
<li id="recent-posts" class="widget skyscraper" onclick="pageTracker._trackPageview('/trackclick/recent_posts');">
<div class='list'>
<h3>Recent Posts</h3>
<ul>
<li><a href="http://247wallst.com/investing/2015/01/02/the-52-week-low-club-for-friday-21/" rel="bookmark" title="Permanent Link to “The 52-Week Low Club for Friday”">The 52-Week Low Club for Friday</a></li>
<li><a href="http://247wallst.com/investing/2015/01/02/the-4-stocks-that-weighed-down-the-djia-friday/" rel="bookmark" title="Permanent Link to “The 4 Stocks That Weighed Down the DJIA Friday”">The 4 Stocks That Weighed Down the DJIA Friday</a></li>
<li><a href="http://247wallst.com/autos/2015/01/02/gm-closes-out-2014-with-total-84-recalls-for-30-million-vehicles/" rel="bookmark" title="Permanent Link to “GM Closes Out 2014 With Total 84 Recalls for 30 Million Vehicles”">GM Closes Out 2014 With Total 84 Recalls for 30 Million Vehicles</a></li>
<li><a href="http://247wallst.com/investing/2015/01/02/can-india-outperform-again-in-2015/" rel="bookmark" title="Permanent Link to “Can India Outperform Again in 2015?”">Can India Outperform Again in 2015?</a></li>
<li><a href="http://247wallst.com/casinos-hotels/2015/01/02/casino-stocks-hammered-on-macau-data/" rel="bookmark" title="Permanent Link to “Casino Stocks Hammered on Macau Data”">Casino Stocks Hammered on Macau Data</a></li>
<li><a href="http://247wallst.com/technology-3/2015/01/02/apple-gets-first-analyst-price-target-hike-of-2015/" rel="bookmark" title="Permanent Link to “Apple Gets First Analyst Price Target Hike of 2015”">Apple Gets First Analyst Price Target Hike of 2015</a></li>
<li><a href="http://247wallst.com/housing/2015/01/02/november-new-construction-spending-unexpectedly-drops/" rel="bookmark" title="Permanent Link to “November New Construction Spending Unexpectedly Drops”">November New Construction Spending Unexpectedly Drops</a></li>
<li><a href="http://247wallst.com/energy-business/2015/01/02/what-terminating-licenses-will-mean-for-ballard/" rel="bookmark" title="Permanent Link to “What Terminating Licenses Will Mean for Ballard Power”">What Terminating Licenses Will Mean for Ballard Power</a></li>
<li><a href="http://247wallst.com/energy-economy/2015/01/02/russian-oil-production-sets-post-soviet-high/" rel="bookmark" title="Permanent Link to “Russian Oil Production Sets Post-Soviet High”">Russian Oil Production Sets Post-Soviet High</a></li>
<li><a href="http://247wallst.com/technology-3/2015/01/02/why-wells-fargo-2015-semiconductor-outlook-is-optimistic-but-cautious/" rel="bookmark" title="Permanent Link to “Why Wells Fargo 2015 Semiconductor Outlook Is Optimistic but Cautious”">Why Wells Fargo 2015 Semiconductor Outlook Is Optimistic but Cautious</a></li>
</ul>
</div>
<div id="ad-right-sidebar-ad-3" adid="right-sidebar-ad-3" addesc="third ad (skyscraper) in right sidebar" class='ad' onclick="pageTracker._trackEvent('Right-sidebar-ad-3', 'Right-Sidebar-Ad-3', 'User has clicked on third ad (skyscraper) in right sidebar');">
<div id="dfp-skyscraper">
<script type="text/javascript">googletag.cmd.push(function() { googletag.display( "dfp-skyscraper" ); });</script>
</div>
</div>
</li>
<li id="ad-right-sidebar-ad-4" adid="right-sidebar-ad-4" addesc="300x600 Right Rail Box 4" class="iframe-ad sidebar right-sidebar-ad-4">
<div id="389657298">
<script type="text/javascript">
try {
window._mNHandle.queue.push(function () {
window._mNDetails.loadTag("389657298", "300x600", "389657298");
});
}
catch (error) {}
</script>
</div>
</li>
<li id="quotebox" class="sidebar">
<form name="searchQuote" id="searchQuote" action="http://www.marketwatch.com/tools/quotes/quotes.asp?symb=mmm" onsubmit="track('Stock Symbol Lookup', 'stock-search', 'User has performed a lookup on a stock symbol: ' + this.value);">
<b>Get Quote for:</b>
<input type="text" name="symb" class="sym2" onfocus="this.style.color='#000000';this.value='';" value="Enter symbol"/>
<div>
<a href="http://www.marketwatch.com/tools/quotes/lookup.asp" title="This link allows you to search for a symbol" target="_blank">Symbol Lookup</a>
</div>
<div id="search2">
<a class="left_quotesearch" href="javascript:document.searchQuote.submit();">Search</a>
</div>
</form>
</li>
</ul>
</div><!-- #Right Sidebar col3 -->
</div><!-- .secondary -->
</div><!-- .content -->
<div id="footer">
<ul class="partner-feeds">
<!-- Starting RSS feeds -->
<li class="sidebar rss-feed" onclick="pageTracker._trackPageview('/trackclick/themotleyfool');">
<a href="http://www.fool.com/" target="_blank"> <img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/ads/themotleyfool.png?m=1391152626g" alt="themotleyfool" border="0" vspace="0"/>
</a> <ul>
<li><a href='http://feeds.fool.com/~r/usmf/foolwatch/~3/KjxjRcUvod4/story01.htm' title='Shake Shack IPO: How the Shack's Financials Stack Up' target='_blank'>Shake Shack IPO: How the Shack's Financials Stack Up</a></li>
<li><a href='http://feeds.fool.com/~r/usmf/foolwatch/~3/v_gtXvb9AFE/story01.htm' title='Why Linn Energy LLC's 12% Surge Today Actually Means Something' target='_blank'>Why Linn Energy LLC's 12% Surge Today Actually Means Something</a></li>
<li><a href='http://feeds.fool.com/~r/usmf/foolwatch/~3/B1zhLmo0NCQ/story01.htm' title='What Internet of Things (IoT) Investors Need to Watch in 2015' target='_blank'>What Internet of Things (IoT) Investors Need to Watch in 2015</a></li>
</ul>
</li>
<li class="sidebar rss-feed" onclick="pageTracker._trackPageview('/trackclick/marketwatch');">
<img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/ads/marketwatch-logo.jpg?m=1341282432g" alt="marketwatch" border="0" vspace="0"/>
<ul>
<li><a href='http://feeds.marketwatch.com/~r/marketwatch/realtimeheadlines/~3/7DaS-4Taug0/' title='Pimco Total Return Fund sees $19.4 bln outflow in December' target='_blank'>Pimco Total Return Fund sees $19.4 bln outflow in December</a></li>
<li><a href='http://feeds.marketwatch.com/~r/marketwatch/realtimeheadlines/~3/2-YBKdc-A44/quotes.asp' title='Nasdaq Composite posts 1.7% weekly decline' target='_blank'>Nasdaq Composite posts 1.7% weekly decline</a></li>
<li><a href='http://feeds.marketwatch.com/~r/marketwatch/realtimeheadlines/~3/2-YBKdc-A44/quotes.asp' title='S&P 500 posts 1.5% weekly fall; Dow down 1.2%' target='_blank'>S&P 500 posts 1.5% weekly fall; Dow down 1.2%</a></li>
</ul>
</li>
<li class="sidebar rss-feed" onclick="pageTracker._trackPageview('/trackclick/foxbusiness');">
<img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/ads/fox-business.png?m=1391152626g" alt="foxbusiness" border="0" vspace="0"/>
<ul>
<li><a href='http://feeds.foxbusiness.com/~r/foxbusiness/latest/~3/W0odr0jsoRY/' title='Beef, agriculture industries upset with dietary guidelines that consider environmental impact' target='_blank'>Beef, agriculture industries upset with dietary guidelines that consider environmental impact</a></li>
<li><a href='http://feeds.foxbusiness.com/~r/foxbusiness/latest/~3/tI3yk52Bql8/' title='Avian flu found in SE Wash. backyard flock; 2nd appearance in state; no public health danger' target='_blank'>Avian flu found in SE Wash. backyard flock; 2nd appearance in state; no public health danger</a></li>
<li><a href='http://feeds.foxbusiness.com/~r/foxbusiness/latest/~3/XfP1-uAJUCg/' title='HarperCollins UK pulls Middle East atlas that cited 'local preferences' for omitting Israel' target='_blank'>HarperCollins UK pulls Middle East atlas that cited 'local preferences' for omitting Israel</a></li>
</ul>
</li>
<li class="sidebar rss-feed" onclick="pageTracker._trackPageview('/trackclick/yhoofinance');">
<img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/ads/yahoo-finance.jpg?m=1386917461g" alt="yhoofinance" border="0" vspace="0"/>
<ul>
<li><a href='http://finance.yahoo.com/news/may-mean-view-energy-stocks-002435180.html' title='New year may mean new view on energy stocks' target='_blank'>New year may mean new view on energy stocks</a></li>
<li><a href='http://finance.yahoo.com/news/u-manufacturing-sector-slips-six-150235482.html' title='U.S. factory sector suffers end-of-year chill' target='_blank'>U.S. factory sector suffers end-of-year chill</a></li>
<li><a href='http://finance.yahoo.com/news/shake-shack-ipo-filing-comes-224234959.html' title='Shake Shack IPO filing comes amid a hunger for premium burgers' target='_blank'>Shake Shack IPO filing comes amid a hunger for premium burgers</a></li>
</ul>
</li>
<li class="sidebar rss-feed" onclick="pageTracker._trackPageview('/trackclick/dailyfinance');">
<img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/ads/DF_Wordmark_Black_150px.png?m=1403073344g" alt="dailyfinance" border="0" vspace="0"/>
<ul>
<li><a href='http://www.dailyfinance.com/2015/01/03/inside-insurance-industry-secret-database/' title='Inside the Insurance Industry's Secret Database About You' target='_blank'>Inside the Insurance Industry's Secret Database About You</a></li>
<li><a href='http://www.dailyfinance.com/2015/01/03/surviving-forced-early-retirement/' title='12 Ways to Survive a Forced Early Retirement' target='_blank'>12 Ways to Survive a Forced Early Retirement</a></li>
<li><a href='http://www.dailyfinance.com/2015/01/03/when-death-comes-calling-tasks/' title='When Death Comes Calling, Here Are 5 Things You Should Do' target='_blank'>When Death Comes Calling, Here Are 5 Things You Should Do</a></li>
</ul>
</li>
<li class="sidebar rss-feed" onclick="pageTracker._trackPageview('/trackclick/huffingtonpost');">
<img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/ads/huffpo-logo.jpg?m=1341282432g" alt="huffingtonpost" border="0" vspace="0"/>
<ul>
<li><a href='http://www.huffingtonpost.com/2015/01/03/college-most-alumni-donate_n_6409268.html' title='10 Colleges Where The Most Alumni Donate' target='_blank'>10 Colleges Where The Most Alumni Donate</a></li>
<li><a href='http://www.huffingtonpost.com/2015/01/02/north-korea-sanctions_n_6408348.html' title='North Korea Sanctions Must Target Regime To Bruise Economy' target='_blank'>North Korea Sanctions Must Target Regime To Bruise Economy</a></li>
<li><a href='http://www.huffingtonpost.com/2015/01/02/nyt-diversity-public-editor-tackles-issue-in-hopes-and-dreams_n_6401982.html' title='NYT Public Editor Tackles Diversity Issues In 'Hopes And Dreams' For 2015' target='_blank'>NYT Public Editor Tackles Diversity Issues In 'Hopes And Dreams' For 2015</a></li>
</ul>
</li>
<!-- End RSS feeds -->
</ul>
<div id="footer_menu">
<ul>
<li id="menu-item-125883" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-125883"><a href="http://247wallst.com/">Home</a></li>
<li id="menu-item-125884" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-125884"><a href="http://247wallst.com/about/">About Us</a></li>
<li id="menu-item-125885" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-125885"><a href="http://247wallst.com/disclaimer-and-terms-of-use/">Disclaimer and Terms of Use</a></li>
<li id="menu-item-125887" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-125887"><a href="http://247wallst.com/page/disclaimer-and-terms-of-use/#privacypolicy">Privacy Policy</a></li>
<li id="menu-item-125888" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-125888"><a href="http://247wallst.com/contact/">Contact Us</a></li>
<li id="menu-item-125889" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-125889"><a href="http://247wallst.com/advertise/">Advertise</a></li>
<li onclick="if( typeof track == 'function' ) track('Ad Click', 'footer', 'User has clicked on ad in footer')">
<a class="noborder" href="http://www.dailyfinance.com/" title="Revised"><img src="http://s0.wp.com/wp-content/themes/vip/247wallst/images/DF_Wordmark_Black_150px.png?m=1403073344g" alt="AOL Money and Finance" align="bottom" /></a>
</li>
</ul>
</div><!-- /footer_menu-->
©2015 24/7 Wall St. <span class="meta-sep">|</span>
<span id="generator-link">Powered by <a href="http://wordpress.com/vip-hosting/" title="WordPress.com VIP" rel="generator">WordPress.com VIP</a></span>
</div><!-- #footer -->
</div><!-- #wrapper .hfeed -->
<script id="mNCC" language="javascript">
window._mNInslDisplay = false;
medianet_versionId = "151199";
(function() {
var isSSL = 'https:' == document.location.protocol;
var mnSrc = (isSSL ? 'https:' : 'http:') + '//contextual.media.net/inslmedianet.js?cid=8CUD54534&crid=179434307&size=641x481' + (isSSL ? '&https=1' : '');
document.write('<scr' + 'ipt type="text/javascript" id="mNSC" src="' + mnSrc + '"></scr' + 'ipt>');
})();
</script>
<!-- If "window._mNInslDisplay" flag is true Media.net Interstitial AdUnit has been loaded -->
<script>
jQuery(function($){
var adBox = null;
$(".ad").click(function() {
adBox = null;