-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathfool.com1.html
More file actions
2009 lines (1598 loc) · 144 KB
/
Copy pathfool.com1.html
File metadata and controls
2009 lines (1598 loc) · 144 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>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
<head><title>
7 Top Stocks to Buy for 2015 (AAPL, FB, GOOG, GOOGL, QCOM, SEAS, TSM, WWAV)
</title><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><meta property="fb:app_id" content="50808187550" />
<meta http-equiv="imagetoolbar" content="no" />
<link rel="image_src" href="http://g.foolcdn.com/art/facebook/FBdefault.png" />
<link rel="alternate" type="application/rss+xml" href="http://www.fool.com/feeds/index.aspx?id=foolwatch&format=rss2" />
<link href="https://plus.google.com/100085898295463832129" rel="publisher"/>
<link rel="canonical" href="http://www.fool.com/investing/general/2014/12/22/7-top-stocks-to-buy-for-2015.aspx" />
<meta name='parsely-page' content='{
"title": "7 Top Stocks to Buy for 2015",
"link": "http://www.fool.com/investing/general/2014/12/22/7-top-stocks-to-buy-for-2015.aspx",
"image_url": "",
"type": "post",
"post_id": "c4f81d9a-8209-11e4-8ca5-0050569d4be0",
"pub_date": "2014-12-23T01:15:00Z",
"section": "Tech and Telecom",
"author": "Motley Fool Staff"
}' />
<link href="http://s.foolcdn.com/common/css/fool.css?v=85837" rel="stylesheet" type="text/css" media="all" /><link href="http://s.foolcdn.com/common/css/Bridge.css?v=85837" rel="stylesheet" type="text/css" media="all" />
<link href="http://s.foolcdn.com/common/css/Usmf.css?v=85837" rel="stylesheet" type="text/css" media="all" />
<link href="http://s.foolcdn.com/common/css/globalTickerHover.css?v=85837" rel="stylesheet" type="text/css" media="all" />
<link href="http://s.foolcdn.com/css/predictive-search-results.css?v=85837" rel="stylesheet" type="text/css" media="all" />
<link href="http://s.foolcdn.com/css/articlepage.css?v=85837" rel="stylesheet" type="text/css" media="all" />
<link href="http://s.foolcdn.com/css/Modules/mom.css?v=85837" rel="stylesheet" type="text/css" media="all" />
<link href="http://s.foolcdn.com/css/main/todaysMarket.css?v=85837" rel="stylesheet" type="text/css" media="all" />
<script type='text/javascript'>
var isUserNameCreated = false;
var isLoggedIn = false;
var hasUserName = true;
var isRegistered = false;
</script>
<script type="text/javascript">
window.analytics = window.analytics || [], window.analytics.methods = ["identify", "group", "track", "page", "pageview", "alias", "ready", "on", "once", "off", "trackLink", "trackForm", "trackClick", "trackSubmit"], window.analytics.factory = function (t) { return function () { var a = Array.prototype.slice.call(arguments); return a.unshift(t), window.analytics.push(a), window.analytics } }; for (var i = 0; i < window.analytics.methods.length; i++) { var key = window.analytics.methods[i]; window.analytics[key] = window.analytics.factory(key) } window.analytics.load = function (t) { if (!document.getElementById("analytics-js")) { var a = document.createElement("script"); a.type = "text/javascript", a.id = "analytics-js", a.async = !0, a.src = ("https:" === document.location.protocol ? "https://" : "http://") + "cdn.segment.io/analytics.js/v1/" + t + "/analytics.min.js"; var n = document.getElementsByTagName("script")[0]; n.parentNode.insertBefore(a, n) } }, window.analytics.SNIPPET_VERSION = "2.0.9",
window.analytics.load("ul1430c8wv");
</script>
<script src="http://j.foolcdn.com/common/js/prototype_fool.min.js?v=85837" type="text/javascript"></script>
<script type="text/javascript">
function vsTrackIt(event, properties) {
var url = "//www.fool.com/tracking/vs/vs_track.gif?log=1&event=" + encodeURIComponent(event);
for (var property in properties) { url = url + "&" + encodeURIComponent(property) + "=" + encodeURIComponent(properties[property]); }
var img = document.createElement('img'); img.src = url;
}
window.analytics.on('track', function(event, properties, options){vsTrackIt(event, properties);});
window.analytics.on('page', function(category, pageName, properties, options){ vsTrackIt("page", properties); });
window.analytics.on('identify', function(id, properties, options){ vsTrackIt("identify", properties); });
window.analytics.page();
</script>
<script type="text/javascript">
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function () {
var gads = document.createElement("script");
gads.async = true;
gads.type = "text/javascript";
var useSSL = "https:" == document.location.protocol;
gads.src = (useSSL ? "https:" : "http:") + "//www.googletagservices.com/tag/js/gpt.js";
var node = document.getElementsByTagName("script")[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script src="//g.foolcdn.com/js/lib/raven.min.js"></script>
<script>
Raven.config('https://bbcb9e0b7bac4c768df1c2d357a0b497@app.getsentry.com/25188', {
whitelistUrls: ['fool.com/common/js/marketing/', 'foolcdn.com/common/js/marketing/', 'googletagmanager.com']
}).install();
</script>
<script language="javascript" type="text/javascript">
dfp_email = '';
</script>
<script src="http://j.foolcdn.com/common/js/fx_usmf.min.js?v=85837" type="text/javascript"></script>
<!--[if IE 6]>
<script src="http://j.foolcdn.com/common/js/DD_belatedPNG_0.0.8a.min.js" type="text/javascript"></script>
<![endif]-->
<script src="http://j.foolcdn.com/js/www_expando.min.js?v=85837" type="text/javascript"></script>
<script src="http://j.foolcdn.com/js/article_recommendations.min.js?v=85837" type="text/javascript"></script>
<script type="text/javascript">Article.prepare();</script>
<script src="http://h.foolcdn.com/tmfstatic/js/vendor/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
jQuery.noConflict();
</script>
<script src="http://s3.amazonaws.com/foolstatic/leadspend_validation.js" async></script>
<meta name="title" content="7 Top Stocks to Buy for 2015" /><meta name="headline" content="7 Top Stocks to Buy for 2015" /><meta name="STORY_UID" content="c4f81d9a-8209-11e4-8ca5-0050569d4be0" /><meta name="author" content="Motley Fool Staff" /><meta name="articletype" content="Investing" /><meta name="collection" content="Investing" /><meta name="date" content="2014-12-22T20:15:00-05:00" /><meta name="promo" content="Qualcomm, Facebook, Apple, and -- surprise! -- SeaWorld Entertainment are on this Foolish list of top stocks to buy for 2015." /><meta name="description" content="Qualcomm, Facebook, Apple, and -- surprise! -- SeaWorld Entertainment are on this Foolish list of top stocks to buy for 2015. - Motley Fool Staff - Tech and Telecom" /><meta name="bureau" content="tech-an-telecom" /><meta name="gsa_date" content="2014-12-22" /><meta name="gsa_date" content="2014-12-22" /></head>
<body id="ctl01_ctl00_ctl00_ctl00_ctl00_ctl00_cphContent_Body" class="hlp Default collectionInvesting">
<script src="http://j.foolcdn.com/common/js/infotron.min.js?v=85837" type="text/javascript"></script>
<div id="header" class="navCellA">
<!--This is DeliveryTemplates\Common\TopHatCommon.xslt--><div id="tophat" class="clearfix">
<div id="tophatWrap">
<div id="navigation" class="clearfix">
<ul id="site-nav" class="site-nav-hide">
<li class="countryIcon countryUSIcon"><a class="qs-source-iflsittph0000001 select" href="http://www.fool.com/">
Fool.com
</a></li>
<li class="countryIcon countryGBIcon"><a class="qs-source-iflsittph0000001" href="http://www.fool.co.uk/">
Fool.co.uk
</a></li>
<li class="countryIcon countryAUIcon"><a class="qs-source-iflsittph0000001" href="http://www.fool.com.au/">
Fool.com.au
</a></li>
<li class="countryIcon countryCAIcon"><a class="qs-source-iflsittph0000001" href="http://www.fool.ca/">
Fool.ca
</a></li>
<li class="countryIcon countrySGIcon"><a class="qs-source-iflsittph0000001" href="http://www.fool.sg">
Fool.sg
</a></li>
<li class="countryIcon countryDEIcon"><a class="qs-source-iflsittph0000001" href="http://www.fool.de">
Fool.de
</a></li>
</ul>
<span id="quips">The World's Greatest Investing Community</span>
</div>
<div id="userTools">
<span id="welcome">Welcome!</span>
<ul id="premium" class="dropMenu">
<li class="topLevel"><a aria-haspopup="true" href="javascript:void(0);" class="qsAdd qs-source-ipesittph0000001"><span><span>Premium Advice</span></span></a><ul id="premium-list">
<li class="info subhead"><strong>My Services</strong></li>
<li class="info">None</li>
<li class="info subhead"><strong>Other Services</strong></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/1255/">Fool One</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/1008/">Hidden Gems</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/1048/">Income Investor</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/1066/">Inside Value</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/1451/">MDP Deep Value</a></li>
<li><a class="qsAdd qs-source-idpsithat0000002" href="http://newsletters.fool.com/30/">Million Dollar Portfolio</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/50/">Motley Fool Options</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/1228/">Motley Fool Pro</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/1069/">Rule Breakers</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/1062/">Rule Your Retirement</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/52/">Special Ops</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002" href="http://newsletters.fool.com/18/">Stock Advisor</a></li>
<li><a class="qsAdd qs-source-ipesittph0000002 last" href="http://newsletters.fool.com/1502/">Supernova</a></li>
</ul>
</li>
</ul>
<span id="Help"><a class="qsAdd qs-source-ihesittph0000001" href="/help/index.htm">Help</a></span>
<span id="join"><a class="qsAdd qs-source-ijnsittph0000001" href="/landing/tmf/secure/registration.aspx">Join Now</a></span>
<span>or</span>
<span id="login"><a class="qsAdd qs-source-ilgsittph0000001" href="https://www.fool.com/secure/login.aspx">Login</a></span>
</div>
</div><script type="text/javascript">// This will not run on newsletters since Fool.js is not on the page at this point.
// <![CDATA[
if(typeof Fool != 'undefined'){
Fool.Util.PseudoClass.addClassOnTap("#tophatWrap ul.dropMenu li.topLevel", "showSubMenu");
}
// ]]></script></div><div id="topnav"><div class="grid">
<!--DO NOT REMOVE THIS TOPNAV COMMENT!-->
<div id="logo"><a class="qsAdd qs-source-illsitima0000001" href="http://www.fool.com/">The Motley Fool
</a></div>
<form id="searchForm" method="get" action="/search/solr.aspx"><fieldset id="search"><input type="hidden" name="exchange-input" id="top_exchange_input" /><input autocomplete="off" class="query" value="Enter Keywords or Ticker" type="text" name="q" maxlength="100" /><input type="hidden" name="source" value="ignsittn0000001" /><input id="commandSearch" class="btn doSearch" type="submit" /></fieldset></form>
<div id="menu" class="grid clearfix"><div class="column span-25"><ul class="clearfix">
<li class="qsAdd qs-source-iflsittph0000001"><a href="http://www.fool.com/" class="qsAdd qs-source-iflsittph0000001"><span>Home</span></a>
<ul>
<li class="qsAdd qs-source-ifltnvsnv0000001 foolwatch"><a href="/foolwatch/foolwatch.aspx" class="qsAdd qs-source-ifltnvsnv0000001 foolwatch">All Fool Headlines</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://military.fool.com/" class="qsAdd qs-source-ifltnvsnv0000001">Fool Military</a></li>
<li class="last qsAdd qs-source-ifltnvsnv0000001"><a href="/press/about.htm" class="last qsAdd qs-source-ifltnvsnv0000001">About The Motley Fool</a></li>
</ul>
</li>
<li class="qsAdd qs-source-ipesittph0000001"><a href="http://my.fool.com/" class="qsAdd qs-source-ipesittph0000001"><span>My Fool</span></a>
<ul>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="https://my.fool.com/Profile" class="qsAdd qs-source-ipesitlnk0000001">My Profile</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="/myarticles" class="qsAdd qs-source-ipesitlnk0000001">My Articles</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="http://my.fool.com/watchlist" class="qsAdd qs-source-ipesitlnk0000001">My Watchlist</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001 premium"><a href="http://newsletters.fool.com/MyScorecard/MyScorecardRedirect.aspx" class="qsAdd qs-source-ipesitlnk0000001 premium">My Scorecard</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="http://boards.fool.com/FavoriteBoards.asp?" class="qsAdd qs-source-ipesitlnk0000001">My Boards</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="http://caps.fool.com/MyPlayer.aspx" class="qsAdd qs-source-ipesitlnk0000001">My CAPS</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="http://my.fool.com/#my-reports" class="qsAdd qs-source-ipesitlnk0000001">My Reports</a></li>
<li class="last qsAdd qs-source-ipesitlnk0000001"><a href="https://www.fool.com/Account/Index.aspx" class="last qsAdd qs-source-ipesitlnk0000001">My Settings</a></li>
</ul>
</li>
<li class="qsAdd qs-source-ifltnvpnv0000001"><a href="/how-to-invest/index.aspx" class="qsAdd qs-source-ifltnvpnv0000001"><span>How To Invest</span></a>
<ul>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/how-to-invest/thirteen-steps/index.aspx" class="qsAdd qs-source-ifltnvsnv0000001">13 Steps</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/how-to-invest/broker/index.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Find a Broker</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://wiki.fool.com/" class="qsAdd qs-source-ifltnvsnv0000001">Investing Wiki</a></li>
<li class=" last qsAdd qs-source-ifltnvsnv0000001"><a href="/how-to-invest/personal-finance/index.aspx" class=" last qsAdd qs-source-ifltnvsnv0000001">Personal Finance</a></li>
</ul>
</li>
<li class="qsAdd qs-source-ifltnvpnv0000001 on"><a href="/investing/index.aspx" class="qsAdd qs-source-ifltnvpnv0000001"><span>Investing Commentary</span></a>
<ul>
<li class="qsAdd qs-source-ifltnvpnv0000001"><a href="/investing/basics/index.aspx" class="qsAdd qs-source-ifltnvpnv0000001">Basics</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/investing/etf/index.aspx" class="qsAdd qs-source-ifltnvsnv0000001">ETFs</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/investing/options/options-a-foolish-introduction.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Options</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/investing/small-cap/index.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Small-Cap</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/investing/dividends-income/index.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Dividends & Income</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/investing/high-growth/index.aspx" class="qsAdd qs-source-ifltnvsnv0000001">High Growth</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/investing/value/index.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Value</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/mutualfunds/mutualfunds.htm" class="qsAdd qs-source-ifltnvsnv0000001">Mutual Funds</a></li>
<li class="last qsAdd qs-source-ifltnvsnv0000001"><a href="/investing/international/index.aspx" class="last qsAdd qs-source-ifltnvsnv0000001">International</a></li>
</ul>
</li>
<li class="capsTab qsAdd qs-source-ifltnvpnv0000001"><a href="http://caps.fool.com/index.aspx" class="capsTab qsAdd qs-source-ifltnvpnv0000001"><span>CAPS Community</span></a>
<ul>
<li class="capsHome qsAdd qs-source-icasitlnk0000006"><a href="http://caps.fool.com/" class="capsHome qsAdd qs-source-icasitlnk0000006">CAPS Home</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/" class="qsAdd qs-source-ifltnvsnv0000001">CAPS Home</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/MyPlayer.aspx" class="qsAdd qs-source-ifltnvsnv0000001">My CAPS</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/TickerRankings.aspx?filter=7&sortcol=38&sortdir=1" class="qsAdd qs-source-ifltnvsnv0000001">Stocks</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/Screener.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Screener</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/PlayerRankings.aspx?filter=20&sortcol=5&sortdir=1" class="qsAdd qs-source-ifltnvsnv0000001">Players</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/Blogs/index.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Blogs</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/Stats.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Top Tens</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/TagRankings.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Tags</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/Contests.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Contests</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/FeedBack.aspx" class="qsAdd qs-source-ifltnvsnv0000001">Contact Us</a></li>
<li class="last qsAdd qs-source-ifltnvsnv0000001"><a href="http://caps.fool.com/Help.aspx" class="last qsAdd qs-source-ifltnvsnv0000001">Help</a></li>
</ul>
</li>
<li class="qsAdd qs-source-ifltnvpnv0000001"><a href="/retirement/index.aspx" class="qsAdd qs-source-ifltnvpnv0000001"><span>Retirement</span></a>
<ul>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/retirement/general/how-to-retire-in-style.aspx" class="qsAdd qs-source-ifltnvsnv0000001">13 Retirement Steps</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/retirement/ira/index.aspx" class="qsAdd qs-source-ifltnvsnv0000001">IRAs</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="/retirement/401k/401kintro-is-your-retirement-plan-foolish.aspx" class="qsAdd qs-source-ifltnvsnv0000001">401(k)s, Etc.</a></li>
<li class="last qsAdd qs-source-ifltnvsnv0000001"><a href="/retirement/assetallocation/introduction-to-asset-allocation.aspx" class="last qsAdd qs-source-ifltnvsnv0000001">Asset Allocation</a></li>
</ul>
</li>
<li class="qsAdd qs-source-ifltnvpnv0000001"><a href="http://boards.fool.com/" class="qsAdd qs-source-ifltnvpnv0000001"><span>Boards</span></a>
<ul>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://boards.fool.com/BestOf.asp" class="qsAdd qs-source-ifltnvsnv0000001">Best Of</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://boards.fool.com/favoriteboards.asp" class="qsAdd qs-source-ifltnvsnv0000001">Favorites & Replies</a></li>
<li class="qsAdd qs-source-ifltnvsnv0000001"><a href="http://boards.fool.com/EditFavoriteBoards.asp" class="qsAdd qs-source-ifltnvsnv0000001">Customize</a></li>
<li class="last qsAdd qs-source-ifltnvsnv0000001"><a href="http://boards.fool.com/request.asp" class="last qsAdd qs-source-ifltnvsnv0000001">Start a New Board</a></li>
</ul>
</li>
<li class="premium qsAdd qs-source-ipesittph0000001"><a href="/shop/newsletters/index.aspx" class="premium qsAdd qs-source-ipesittph0000001"><span>Fool Store</span></a>
<ul>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="http://newsletters.fool.com/18/index.aspx" class="qsAdd qs-source-ipesitlnk0000001">Stock Advisor</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="http://newsletters.fool.com/04/index.aspx" class="qsAdd qs-source-ipesitlnk0000001">Hidden Gems</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="http://newsletters.fool.com/15/index.aspx" class="qsAdd qs-source-ipesitlnk0000001">Rule Breakers</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="http://newsletters.fool.com/30/index.aspx" class="qsAdd qs-source-ipesitlnk0000001">Million Dollar Portfolio</a></li>
<li class="qsAdd qs-source-ipesitlnk0000001"><a href="http://newsletters.fool.com/1228/index.aspx" class="qsAdd qs-source-ipesitlnk0000001">Motley Fool PRO</a></li>
<li class="last qsAdd qs-source-ipesitlnk0000001"><a href="http://app.fool.com/" class="last qsAdd qs-source-ipesitlnk0000001">Motley Fool Mobile</a></li>
</ul>
</li>
</ul></div></div>
<img width="0" height="0" class="vs-tracking-px" src="http://www.fool.com/tracking/vs/vs_track.gif?_rnd=838464978&actual_url=http%3a%2f%2fwww.fool.com%2finvesting%2fgeneral%2f2014%2f12%2f22%2f7-top-stocks-to-buy-for-2015.aspx&articletype=collection548&author=Motley+Fool+Staff&authortype=author&bureau=Tech+and+Telecom&CellID=0%2c2%2c1%2c0%2c1%2c0%2c1&cntSliderLogicView=ShowUserSliderCriteria&headline=7+Top+Stocks+to+Buy+for+2015&log=1&lvHasAProduct=AlwaysTrue&lvPromoLeaderboard=DoesntOwnFoolOneOrFoolOnePlus&newsitetest=0&referrer=http%3a%2f%2fnone%2f&segment=default&site=usmf.inv.investing&storytype=Roundtable&TestID=YourMyMom%3a001%2cymmTickerBox%3a001%2cmvtSlider%3a01%2cprmoCSS%3a01%2cfeaturedArticlesTest%3a01%2ctickleDesign%3a001%2cticklePersist%3a001&uid=0&url=http%3a%2f%2fwww.fool.com%2finvesting%2fgeneral%2f2014%2f12%2f22%2f7-top-stocks-to-buy-for-2015.aspx&usmfRedirectCriteria=AlwaysTrue&zone=articles" />
</div></div><script type="text/javascript"> var topNav = new Usmf.Tabs('menu'); topNav.insertSubnavElement('foolwatch', 'Motley Fool Funds', 'You are leaving Fool.com, operated by The Motley Fool, LLC. Would you like to continue to FoolFunds.com, operated by Motley Fool Asset Management, LLC?', 'http://www.foolfunds.com'); new Fool.Util.SearchBox('searchForm');</script>
</div>
<div id="mid">
<div class="grid">
<div id="flash">
<div id="promoAndLeaderboard" class="clearfix">
<div class="leaderboard ad-728x90">
<script type='text/javascript'> var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; googletag.cmd.push(function() {googletag.pubads().setTargeting('sub','default');googletag.pubads().setTargeting('port','default');googletag.pubads().setTargeting('trades','default');googletag.pubads().setTargeting('reg','false');googletag.pubads().setTargeting('etfticker','false');googletag.pubads().setTargeting('ret','default');googletag.pubads().setTargeting('mgr','default');googletag.pubads().setTargeting('funds','default');googletag.pubads().setTargeting('goldticker','false');googletag.pubads().setTargeting('bureau','tech-an-telecom');googletag.pubads().setTargeting('series','default');googletag.pubads().setTargeting('buckettarget','default');googletag.pubads().setTargeting('swap','false');googletag.pubads().setTargeting('sessionCount','2');googletag.pubads().setTargeting('tenOrMoreSessions','false');googletag.pubads().setTargeting('type','272');googletag.pubads().setTargeting('adtags','growth,international,tech');googletag.pubads().setTargeting('tickers','AAPL,GOOGL,FB,QCOM,TSM,WWAV,IT,SSNLF,SEAS,LNVGY,TWTR,GOOG,LNVGF,SOXX'); });</script><div id="div-gpt-ad-728x90-0"></div><script type="text/javascript">var pitcherAds = pitcherAds || PitcherAds();pitcherAds.get({placement: "leaderboard",divId: "div-gpt-ad-728x90-0",site: "usmf.inv.investing",zone: "articles",width: 728,height: 90,pos: "top",position: "0",seg: "default",tile: "1",sub: "default",port: "default",trades: "default",reg: "false",etfticker: "false",ret: "default",mgr: "default",funds: "default",goldticker: "false",bureau: "tech-an-telecom",series: "default",buckettarget: "default",swap: "false",sessionCount: "2",tenOrMoreSessions: "false",type: "272",adtags: "growth,international,tech",tickers: "AAPL,GOOGL,FB,QCOM,TSM,WWAV,IT,SSNLF,SEAS,LNVGY,TWTR,GOOG,LNVGF,SOXX",src: ""});</script>
</div>
<div class="promo">
<script language="JavaScript" type="text/javascript" src="http://ad.doubleclick.net/adj/usmf.inv.investing/articles;pos=;seg=default;src=;sz=237x90;sub=default;port=default;trades=default;reg=false;etfticker=false;ret=default;mgr=default;funds=default;goldticker=false;bureau=tech-an-telecom;series=default;buckettarget=default;swap=false;sessionCount=2;tenOrMoreSessions=false;type=272;adtags=growth,international,tech;tickers=AAPL,GOOGL,FB,QCOM,TSM,WWAV,IT,SSNLF,SEAS,LNVGY,TWTR,GOOG,LNVGF,SOXX;tile=2;ord=29351921?"></script><noscript><a href="http://ad.doubleclick.net/jump/usmf.inv.investing/articles;pos=;seg=default;src=;sz=237x90;sub=default;port=default;trades=default;reg=false;etfticker=false;ret=default;mgr=default;funds=default;goldticker=false;bureau=tech-an-telecom;series=default;buckettarget=default;swap=false;sessionCount=2;tenOrMoreSessions=false;type=272;adtags=growth,international,tech;tickers=AAPL,GOOGL,FB,QCOM,TSM,WWAV,IT,SSNLF,SEAS,LNVGY,TWTR,GOOG,LNVGF,SOXX;tile=2;ord=29351921?" rel="nofollow" target="_blank"><img src="http://ad.doubleclick.net/ad/usmf.inv.investing/articles;pos=;seg=default;src=;sz=237x90;sub=default;port=default;trades=default;reg=false;etfticker=false;ret=default;mgr=default;funds=default;goldticker=false;bureau=tech-an-telecom;series=default;buckettarget=default;swap=false;sessionCount=2;tenOrMoreSessions=false;type=272;adtags=growth,international,tech;tickers=AAPL,GOOGL,FB,QCOM,TSM,WWAV,IT,SSNLF,SEAS,LNVGY,TWTR,GOOG,LNVGF,SOXX;tile=2;ord=29351921?" border="0" alt=""></a></noscript>
</div>
</div>
</div>
<div id="layout" class="bigBox round clearfix">
<div class="myWatchlistModuleContainer" id="myWatchlistModuleContainer">
<div class="myWatchlistModule clearfix round">
<div class="nameplate floatL">
<h3><a class="linkedHeader" href="http://my.fool.com/watchlist" title="View My Watchlist">My Watchlist</a></h3>
</div>
<!-- no wl -->
<div class="contentField floatL noAddForm">
Track the companies that matter to you. It's FREE! Click one of these fan favorites to get started: <strong><a href="http://my.fool.com/watchlist/add?ticker=AAPL" class="qsAdd qs-source-iwlsitlnk0000027">Apple</a></strong>; <strong><a href="http://my.fool.com/watchlist/add?ticker=GOOG" class="qsAdd qs-source-iwlsitlnk0000027">Google</a></strong>; <strong><a href="http://my.fool.com/watchlist/add?ticker=F" class="qsAdd qs-source-iwlsitlnk0000027">Ford</a></strong>.
</div>
</div>
</div>
<div id="primary" class="column collection548">
<!-- AddThis Javascript -->
<script type="text/javascript" charset="utf-8">
// On window resize, adjust left position of toolbar to keep it within 20px of the content
// If it can't fit with 20px on either side, hide it and show the horizontal buttons
Event.observe(window, "resize", hideShowToolboxes);
Event.observe(window, "scroll", function () {
var leftPos = Element.viewportOffset($('primary')).left - 105 + 'px';
if ($('vertical_toolbox').visible()) {
if (Element.viewportOffset($('primary')).top <= 10) {
$('vertical_toolbox').setStyle({ position: 'fixed', top: '10px', left: leftPos });
} else {
$('vertical_toolbox').setStyle({ top: '0', left: '-85px', position: 'absolute' });
}
}
});
function hideShowToolboxes() {
var width = document.viewport.getWidth();
if (width <= document.minimumWidth) {
hideVertical();
showHorizontal();
} else {
showVertical();
hideHorizontal();
}
}
document.observe("dom:loaded", function () {
$('mid').select('div.grid').each(function (div) { div.setStyle({ overflow: 'visible' }) });
document.minimumWidth = 1150;
if (document.viewport.getWidth() <= document.minimumWidth) {
$('vertical_toolbox').hide();
$('horizontal_toolbox').show();
}
});
function showHorizontal() {
if ($('horizontal_toolbox').visible() != true) {
$('horizontal_toolbox').show();
}
}
function hideVertical(argument) {
$('vertical_toolbox').hide();
}
function hideHorizontal(argument) {
$('horizontal_toolbox').hide();
}
function showVertical() {
$('vertical_toolbox').show();
}
</script>
<script type="text/javascript">
// My Articles Article Bookmarking
Fool.onContent(function() {
$(document).on("click", ".savethis", function(event, element){
event.preventDefault();
var url = '/myarticles/save';
var pars = '';
pars += "headline=" + "7 Top Stocks to Buy for 2015";
pars += '&item=' + 'http://www.fool.com/investing/general/2014/12/22/7-top-stocks-to-buy-for-2015.aspx';
var myAjax = new Ajax.Request(
url,
{
method: 'post',
parameters: pars,
onCreate: createResponse.bind(element),
onComplete: successResponse.bind(element),
onFailure: errorResponse
});
});
});
function createResponse()
{
$(this).update("Saving Article...");
$(this).writeAttribute({"class": "saving"});
}
function successResponse()
{
$(this).writeAttribute({
"href": "/myarticles",
"class": "saved"
});
// Remove and insert view link after 2 seconds
var timer;
timer = setTimeout(function()
{
console.log(this);
$(this).update('View My Articles')
}.bind(this), 2000);
}
function errorResponse()
{
// Do something if web service not working
console.log("Something went wrong!");
}
</script>
<!-- AddThis HORIZONTAL Buttons BEGIN -->
<div class="shareLinks clearfix addthis_toolbox" id="horizontal_toolbox" style="display:none;">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet" tw:via="themotleyfool"></a>
<a class="addthis_button_email email_bg">Email</a>
<a class="addthis_button_print print_bg">Print</a>
<a class="addthis_counter addthis_pill_style"></a>
<!--<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>-->
</div>
<div class="printLogo">
<img src="http://g.fool.com/art/foollogo/horizontaltmf.gif" alt="The Motley Fool"/>
</div>
<div id="content" class="hentry cms" itemscope itemtype="http://schema.org/Article">
<!--googleon:all-->
<!-- surphace start -->
<div id="recModule">
<div class="recommendCtl">
<div class="recWrap" id="numRecsWrapper"
title="46 members have recommended this article">
<p>Recs</p>
<h3>
<span>
46
</span>
</h3>
</div>
<div>
<input type="submit" class="button" value="Rec This"
onclick="Recommendations.RecommendIt('0','3208784','Post', this);return false;" />
</div>
</div>
</div>
<ul id="toolBox">
</ul>
<h1 class="xlHeader">7 Top Stocks to Buy for 2015</h1>
<p class="articleMeta">
<span class="vcard byline">By
<span itemprop="author" content="Motley Fool Staff">Motley Fool Staff</span> <meta itemprop="contributor" content="1282" />
|
<a class="qsAdd qs-source-iapsitlnk0000003" href="/author/1282/index.aspx">More Articles</a>
</span>
<br />
<span class="dateline">December 22, 2014</span>
|
<span class="comments"><a href="#commentsBoxAnchor">Comments (25)
</a></span>
</p>
<div class="entry-content">
<p>Need a reason to invest in stocks? How about the beginning of a new year. To help you find solid stock ideas we asked Fool.com contributors covering technology and consumer goods stocks to talk about top stocks for 2015. Read on to see what they had to say about <strong>Qualcomm</strong> (<span class="ticker">NASDAQ: <a data-id="205173" class="qsAdd qs-source-isssitthv0000001" href="http://caps.fool.com/Ticker/QCOM.aspx">QCOM</a></span> <a class="addToWatchListIcon qsAdd qs-source-iwlsitbut0000010" title="Add QCOM to My Watchlist" href="http://my.fool.com/watchlist/add?ticker=QCOM"> </a>) , <strong>Facebook</strong> (<span class="ticker">NASDAQ: <a data-id="273426" class="qsAdd qs-source-isssitthv0000001" href="http://caps.fool.com/Ticker/FB.aspx">FB</a></span> <a class="addToWatchListIcon qsAdd qs-source-iwlsitbut0000010" title="Add FB to My Watchlist" href="http://my.fool.com/watchlist/add?ticker=FB"> </a>) , <strong>SeaWorld</strong> <strong>Entertainment</strong> (<span class="ticker">NYSE: <a data-id="287784" class="qsAdd qs-source-isssitthv0000001" href="http://caps.fool.com/Ticker/SEAS.aspx">SEAS</a></span> <a class="addToWatchListIcon qsAdd qs-source-iwlsitbut0000010" title="Add SEAS to My Watchlist" href="http://my.fool.com/watchlist/add?ticker=SEAS"> </a>) , <strong>WhiteWave</strong> <strong>Foods</strong> (<span class="ticker">NYSE: <a data-id="273737" class="qsAdd qs-source-isssitthv0000001" href="http://caps.fool.com/Ticker/WWAV.aspx">WWAV</a></span> <a class="addToWatchListIcon qsAdd qs-source-iwlsitbut0000010" title="Add WWAV to My Watchlist" href="http://my.fool.com/watchlist/add?ticker=WWAV"> </a>) , <strong>Google</strong> (<span class="ticker">NASDAQ: <a data-id="288965" class="qsAdd qs-source-isssitthv0000001" href="http://caps.fool.com/Ticker/GOOG.aspx">GOOG</a></span> <a class="addToWatchListIcon qsAdd qs-source-iwlsitbut0000010" title="Add GOOG to My Watchlist" href="http://my.fool.com/watchlist/add?ticker=GOOG"> </a>) (<span class="ticker">NASDAQ: <a data-id="203768" class="qsAdd qs-source-isssitthv0000001" href="http://caps.fool.com/Ticker/GOOGL.aspx">GOOGL</a></span> <a class="addToWatchListIcon qsAdd qs-source-iwlsitbut0000010" title="Add GOOGL to My Watchlist" href="http://my.fool.com/watchlist/add?ticker=GOOGL"> </a>) , <strong>Taiwan</strong> <strong>Semiconductor</strong> (<span class="ticker">NYSE: <a data-id="205813" class="qsAdd qs-source-isssitthv0000001" href="http://caps.fool.com/Ticker/TSM.aspx">TSM</a></span> <a class="addToWatchListIcon qsAdd qs-source-iwlsitbut0000010" title="Add TSM to My Watchlist" href="http://my.fool.com/watchlist/add?ticker=TSM"> </a>) , and <strong>Apple</strong> (<span class="ticker">NASDAQ: <a data-id="202686" class="qsAdd qs-source-isssitthv0000001" href="http://caps.fool.com/Ticker/AAPL.aspx">AAPL</a></span> <a class="addToWatchListIcon qsAdd qs-source-iwlsitbut0000010" title="Add AAPL to My Watchlist" href="http://my.fool.com/watchlist/add?ticker=AAPL"> </a>) .</p>
<p><strong><a href="http://my.fool.com/profile/TMFAeassa/info.aspx">Ashraf Eassa</a></strong> (<strong>Qualcomm):</strong> It's hard not to be pleased with the performances of technology and, in particular, semiconductor stocks in 2014. The <strong>Philadelphia Semiconductor Index </strong>is up over 28% year-to-date, handily crushing the <strong>S&P 500</strong> and the <strong>Nasdaq</strong>, up 10.12% and 12.73%, respectively. However, one high-quality chip company that has underperformed pretty significantly during 2014 -- but one that I believe is set to do much better in 2015 -- is Qualcomm.</p>
<p>First, Qualcomm's execution in developing and delivering a compelling range of mobile applications processor offerings looks unmatched. For example, the company revealed on Dec. 11 that it would be upgrading the baseband on its upcoming high-end Snapdragon 810 processor to offer 50% greater download speeds than had been previously announced. This further extends the company's leadership position in cellular baseband technology.</p>
<p>It's this kind of execution in its chip business that not only keeps it ahead of major competitors like <strong>MediaTek</strong>, but also makes it very difficult for mobile device vendors to successfully develop their own in-house chip solutions in a bid to cut Qualcomm out.</p>
<p>Further, Qualcomm's technology licensing business, which collects royalties on most 3G/4G devices sold, is extremely profitable and <em>should </em>continue to<em> </em>grow with overall smartphone growth. Now, it's well-known that Qualcomm is having issues collecting on royalties from some Chinese handset vendors (leading to pessimism around the business), but I think Qualcomm will be able to solve its issues there, as it has <a href="http://www.fool.com/investing/general/2014/10/06/why-im-buying-into-qualcomm-inc.aspx">done in the past</a>.</p>
<p>All told, Qualcomm stock is cheap at just 16.36 times trailing-12-month earnings, it's a high-quality company, but the stock has underperformed during 2014. Qualcomm the company is a winner, and I think that during 2015, Qualcomm the <em>stock</em> will be, too.</p>
<p><strong><a href="http://my.fool.com/profile/TMFacardenal/info.aspx">Andrés Cardenal</a> (Google):</strong> Information is power and Google's mission statement, "to organize the world's information and make it universally accessible and useful" says a lot about the company and the role it plays in times of chaotically abundant information.</p>
<p>Google is the undisputed king in online search; the company has a bigger market share than all its competitors combined. In addition, Google has built a massive portfolio of services and applications, including enormously valuable assets like Gmail, YouTube, and Chrome, to name a few remarkable examples. More than 80% of smartphones around the planet are powered by Android, so Google is in a position of strength to continue thriving under the mobile paradigm.</p>
<p>The company generates tons of cash flows from its leadership position in online advertising, and management is not shy at all when it comes to investing that money in the search for breakthrough innovations. From self-driving cars to biotechnology solutions to fighting human aging and associated diseases, Google has plenty of exciting projects with disruptive potential in its pipeline.</p>
<p>Investors are getting concerned about slowing revenue growth and rising expenses lately, and this may provide a buying opportunity in the online search giant. Google trades at a forward P/E ratio near 17.5, roughly in line with the <strong>S&P 500 Index</strong>. However, even during a "disappointing" third quarter, Google delivered a big increase of 20% in revenues, a level of performance which most companies in the index can only envy. Google has a lot of things going right and I think Google is a top stock to consider buying for 2015.</p>
<p><strong><a href="http://my.fool.com/profile/TMFSocialME/info.aspx">Tamara Walsh</a> (WhiteWave Foods):</strong> From smart acquisitions to promising opportunities in oversees markets such as China, WhiteWave Foods is one of my favorite stock picks heading into the new year. The packaged food and beverage company has enjoyed a nice run this year with the stock up more than 47% year-to-date. However, there should be plenty of growth ahead thanks to WhiteWave's partnership with <a href="http://www.fool.com/investing/general/2014/10/02/3-reasons-whitewave-foods-stock-will-outperform-in.aspx">Mengniu Dairy</a>, one of China's largest dairy companies.</p>
<div class="image small imgR"><img alt="" src="http://g.foolcdn.com/editorial/images/153519/silk-white-wave_large.gif" width="240">
<p class="caption">Image source: whitewave.com</p>
</div>
<p>As part of this joint venture, WhiteWave purchased a production facility where it plans to begin manufacturing its products for the Chinese market in the coming months. WhiteWave Foods owns a 49% stake in the deal, which will enable the company to sell its brands in China, one of the world's largest consumer markets with over 1.3 billion consumers and a rapidly growing middle class. Market-leading brands including Silk soy milk and almond milk, Land-o-Lakes butter, and International Delight coffee creamers, have already helped WhiteWave Foods make a name for itself in North America and Europe. The company celebrated a record third quarter recently, with net sales climbing 35% to $857 million in the period. I expect this momentum to carry over into the new year, and for the stock to continue to gain speed in the year ahead as the company expands into new markets and product categories.</p>
<p><a href="http://my.fool.com/profile/TMFBreakerRick/info.aspx"><strong>Rick Munarriz</strong></a> (<strong>SeaWorld Entertainment</strong>)<strong>:</strong> I'm going to go full contrarian with a stock that everybody seems to hate. SeaWorld is in a bad spot these days. Activists have succeeded in keeping guests away from its marine life theme parks given the negative publicity about killer whales in captivity. Attendance across its 11 parks fell 4.1% in 2013 and is off by another 4.7% through the first nine months of 2014. This is the only theme park or regional amusement park operator that's experiencing lower turnstile clicks this year. The stock that went public at $27 early in 2013 is now all the way down to the mid-teens, and earlier this month it announced that it would have to postpone the dividend that was supposed to go out in December because it would violate its debt covenants. </p>
<div class="image small imgL">
<div class="image small imgL"><img alt="" src="http://g.foolcdn.com/editorial/images/153519/seaworld-logo-121714_large.png" width="240">
<p class="caption">Image source: SeaWorld</p>
</div>
</div>
<p>This all seems pretty grim, but changes are coming. SeaWorld's CEO is leaving in January, opening the door for an outsider who can help soften the battered brand. Along the way we have some favorable trends including an improving economy and lower gas prices that should deliver big boosts to the theme park industry in general.</p>
<p>SeaWorld is in a bad spot, but it's also important to remember that just three of its parks are orca-housing SeaWorld attractions. The dividend should return in January, and guests will eventually follow as the chain either takes active steps to improve its image or fickle consumers move on to a new cause. With SeaWorld trading at a valuation discount to its peers there's plenty of upside in 2015 even if the market doesn't comply. The climate is ripe for SeaWorld to make a big splash in the year ahead.</p>
<p class="ticker" data-id="202686"><strong><a href="http://my.fool.com/profile/TMFlewis/info.aspx">Dylan Lewis</a> (Apple):</strong> It's far from a sexy pick, but most who have bet against Apple the past five years have come to regret it and I don't see 2015 being any different.</p>
<p>Apple's brand cachet and customer loyalty hasn't wavered -- while the company's iPad line is faltering, Macs are selling well. In October the company revealed the segment posted its highest quarterly market share since 1995.</p>
<p>Apple's brand prestige is even more valuable in the increasingly competitive smartphone market as Asian OEM's Xiaomi, <strong>Lenovo</strong>, and Huawei continue to produce low-cost devices. Skeptics need to look no further than <strong>Samsung</strong>'s shrinking smartphone market share to appreciate the moat Apple enjoys due to its status, quality, and exclusive iOS and Mac operating systems.</p>
<p>The recent December sell-off gives investors an even more attractive entry point, the company still trades at a TTM P/E of 17 and a forward P/E of 14.</p>
<p>Even in the neighborhood of some of the more conservative <a href="http://fortune.com/2014/09/09/the-apple-watch-what-the-analysts-are-saying/">analyst estimates</a> of 5 million to 10 million units, the Apple Watch could provide a 1%-3% lift on projected revenue for CY 2015. The fledgling Apple Pay now supports credit cards that comprise 90% of the U.S. credit card purchase volume and could prove to be an even bigger catalyst than the new line of wearables. With each e-commerce security breach (it seems like there's one almost every other week), Apple Pay's tokenization system becomes increasingly appealing to consumers seeking security.</p>
<p>Stability with its hardware stalwarts, new growth opportunities, a decent dividend yield (1.7%) and an average of <a href="http://www.fool.com/investing/general/2014/12/09/forget-apple-watch-this-is-the-apple-inc-catalyst.aspx?source=isesitlnk0000001&mrr=1.00">$11 billion in stock repurchases</a> each quarter for the past year and a half – there are simply too many reasons to ignore the Mac maker in 2015.</p>
<p><strong><a href="http://my.fool.com/profile/timbrugger/info.aspx">Tim Brugger</a> (Facebook):</strong> With its stock price up 38% so far this year, it may seem counterintuitive to include Facebook on a list of stocks to buy in 2015. However, there are a laundry list of revenue opportunities at Facebook's fingertips heading into the new year, and it appears a couple in particular are about ready to pay off.</p>
<div class="image small imgR"><img alt="" src="http://g.foolcdn.com/editorial/images/153519/facebook-hq_2_large.jpg" width="240"></div>
<p>Though <strong>Twitter</strong> is loath to admit the importance of the milestone, the news that Instagram recently topped 300 million monthly active users (MAUs) is significant, to say the least. Perhaps most impressive is how quickly Instagram's MAUs grew. The number was hovering around 200 million users just nine months ago. No wonder Twitter's envious.</p>
<p>Facebook COO Sheryl Sandberg made waves earlier this year when she said that there was no rush to monetize Instagram in any meaningful way, nor incorporate video spots as an advertising medium. Instead, Sandberg and CEO Mark Zuckerberg wanted to grow Instagram's user base, ensure a positive user experience, and test the video ad waters -- at a whopping cost of $1 million a day -- before making them available to its marketing partners. The MAU growth of Instagram is certainly there, and with the advent of video ads on both Facebook and Instagram, 2015 should be yet another banner year.</p>
<p><strong><a href="http://my.fool.com/profile/TMFBuckeye/info.aspx">Sean O’Reilly</a> (Taiwan Semiconductor):</strong> Technology can be a tough business to be in for investors. The relentless competition and constant need to innovate frequently make long-term shareholder gains elusive. However, Taiwan Semiconductor not only dominates its market but happens to be leveraged to an increasingly important technological trend making it my top stock pick for 2015.</p>
<p>Taiwan Semiconductor is the world’s largest fabricator of silicon chips. The company pioneered the dedicated semiconductor foundry model and operates primarily by partnering with fabless customers that don’t have the scale and operating expertise that Taiwan Semiconductor possesses. Cost advantage and scale are the name of the game and these happen to be things that Taiwan Semiconductor has in spades. These advantages will become all the more apparent as the world’s need for semiconductor chips grows exponentially in the coming years.</p>
<p>As the world becomes more and more connected (a trend called the “Internet of Things”), Taiwan Semiconductor stands to benefit in a big way. Technology research organization <strong>Gartner</strong> estimates that 4.9 billion connected “things” will be in use in 2015, up from 3.75 billion in 2014. Gartner’s estimate for 2020? Try 25 billion connected devices. Investors have two ways to participate in this increasingly connected world: Focus on those that produce the connected devices, or the companies that make connecting these devices to the internet possible, like Taiwan Semiconductor.</p>
<p>There’s a lot to like on Taiwan Semi’s balance sheet and income statement as well. The company trades for just under 14 times this year’s estimated EPS according to S&P Capital IQ <a href="https://www.capitaliq.com/CIQDotNet/my/dashboard.aspx">estimates</a> (high for a semiconductor fabricator but more than fair given its dominant industry position) and has a pristine balance sheet with very little debt. Add in the company’s exceptional return on equity, which has averaged 23.62% over the last five years and you get a company that should be on every Foolish investor's holiday wish list.</p>
<p></p>
<div class="" id="pitch">
<p><strong>1 great stock to buy for 2015 and beyond<br></strong>2015 is shaping up to be another great year for stocks. But if you want to make sure that 2015 is <em>your</em> best investing year ever, you need to know where to start. That's why The Motley Fool's chief investment officer just published a brand-new research report that reveals his top stock for the year ahead. To get the full story on this year's stock -- <em>completely free</em> -- <a href="http://www.fool.com/ecap/stock-advisor/stocks-2015/?aid=8614&source=isaeditxt0000143">simply click here</a>.</p>
</div> <script type="text/javascript"> var FoolAnalyticsData = FoolAnalyticsData || []; FoolAnalyticsData.push({ eventType: "ArticlePitch", contentByline: "Motley Fool Staff", contentId: "cms.153519", contentTickers: "", contentTitle: "7 Top Stocks to Buy for 2015", hasVideo: "False", pitchId: "1261", pitchTickers: "", pitchTitle: "", pitchType: "", sfrId: "" }); </script> <p></p>
<div id="pitcherPitch"></div>
<script type="text/javascript" src="http://j.foolcdn.com/common/js/marketing/pitchengine.js?v=85837"></script>
<script>
Fool.onContent(function() {
if (typeof(window.infotronQueue) !== "undefined")
window.infotronQueue.Register('pitch');
var pitchEngine = PitchEngine();
var pitchId = -1;
var sessionCount = 1;
var firstPageView = 0;
if (typeof (FoolAnalyticsData) !== "undefined" && typeof (FoolAnalyticsData[0]) !== "undefined" && typeof (FoolAnalyticsData[0].pitchId) !== "undefined") {
pitchId = FoolAnalyticsData[0].pitchId;
}
if (Fool.Cookie.exists('Visitor')) {
var visitCountCookie = Fool.Cookie.getValues('Visitor')['visits'];
if (typeof(visitCountCookie) !== "undefined") {
sessionCount = pitchEngine.tryParseInt(visitCountCookie, 1);
}
}
pitchEngine.initialize({
site: 'fool',
placement: 'article_pitch',
tickers: 'AAPL,FB,GOOG,GOOGL,QCOM,SEAS,TSM,WWAV,IT,LNVGF,LNVGY,SOXX,SSNLF,TWTR',
instrumentId: '202686,273426,288965,203768,205173,287784,205813,273737,204070,249291,220802,225182,284397,288517',
uid: '0',
guid: '',
isEcapped: false,
isBuyer: false,
containsPitchBase: false,
productId: '',
pitchId: pitchId,
sessionCount: sessionCount,
firstPageview: firstPageView,
skin: '',
pitchContainer: 'pitch'
});
});
</script>
<script type="text/javascript">
var ord = window.ord || Math.floor(Math.random() * 1e16);
document.write('<script type="text/javascript" src="http://ad.doubleclick.net/N3910/adj/usmf.articles.articles/articles;sz=470x200;ord=' + ord + '?"><\/script>');
</script>
<noscript>
<a href="http://ad.doubleclick.net/N3910/jump/usmf.articles.articles/articles;sz=470x200;ord=[timestamp]?">
<img src="http://ad.doubleclick.net/N3910/ad/usmf.articles.articles/articles;sz=470x200;ord=[timestamp]?" width="470" height="200" />
</a>
</noscript>
<script type="text/javascript">
var dataLayer = dataLayer || [];
dataLayer.push({ 'sliderShown': 'true' });
</script>
<!-- surphace end -->
<!-- Third Party Content Additional Links (if any). XML path and visibility is set according to Provider in code-behind -->
<div class='footer'><p><em><a href="http://my.fool.com/profile/the_motley_fool/info.aspx">Andrés Cardenal</a> owns shares of Apple, Google (C shares), and Qualcomm. <a href="http://my.fool.com/profile/aeassa/info.aspx">Ashraf Eassa</a> owns shares of Qualcomm. <a href="http://my.fool.com/profile/TMFlewis/info.aspx">Dylan Lewis</a> owns shares of Apple. <a href="http://my.fool.com/profile/TMFBreakerRick/info.aspx">Rick Munarriz</a> owns shares of Qualcomm. <a href="http://my.fool.com/profile/TMFBuckeye/info.aspx">Sean O'Reilly</a> has no position in any stocks mentioned. <a href="http://my.fool.com/profile/TMFSocialME/info.aspx">Tamara Rutter</a> owns shares of Apple, Twitter, and WhiteWave Foods. <a href="http://my.fool.com/profile/timbrugger/info.aspx">Tim Brugger</a> has no position in any stocks mentioned. The Motley Fool recommends Apple, Facebook, Gartner, Google (A shares), Google (C shares), Twitter, and WhiteWave Foods. The Motley Fool owns shares of Apple, Facebook, Google (A shares), Google (C shares), Qualcomm, Twitter, and WhiteWave Foods. </em></p>
<p><em>Try any of our Foolish newsletter services <a href="http://www.fool.com/shop/newsletters/index.aspx?source=isiedilnk018048">free for 30 days</a>. We Fools may not all hold the same opinions, but we all believe that <a href="http://wiki.fool.com/Motley">considering a diverse range of insights</a> makes us better investors. The Motley Fool has a <a href="http://www.fool.com/Legal/fool-disclosure-policy.aspx">disclosure policy</a>.</em></p></div>
</div><!-- /entry-content -->
</div><!-- /content -->
<br style="clear:both;" />
<div id="articleTools">
<p id="recModuleBottom">
<span class="readComments"><a href="#commentsBoxAnchor">Read/Post Comments (25)</a></span>
<span class="recModulePike"> | </span>
<span class="recArticle">
<span class="recInline">
<a href="#" onclick="Recommendations.RecommendIt('0','3208784','Post', this);return false;">Recommend This Article (46)</a>
</span>
<noscript>
<span class="recInline">
Recommended 46 Times
</span>
</noscript>
</span>
<!-- AddThis Button BEGIN -->
<div class="shareLinks clearfix addthis_toolbox" id="horizontal_bottom_toolbox" >
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet" tw:via="themotleyfool"></a>
<!--<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>-->
<a class="addthis_button_email email_bg">Email</a>
<a class="print_bg" href="/server/FoolPrint.asp?File=/investing/general/2014/12/22/7-top-stocks-to-buy-for-2015.aspx">Print</a>
<a class="feedback_bg" href="http://www.fool.com/Help/Index.htm?display=EmailNews&p=/investing/general/2014/12/22/7-top-stocks-to-buy-for-2015.aspx">Feedback</a>
<a class="addthis_counter addthis_pill_style"></a>
<script type="text/javascript"> var addthis_config = { "data_track_addressbar": true };</script>
</div>
<script src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4fccc73f4f57fb0a" type="text/javascript"></script>
</p>
<!-- AddThis VERTICAL Buttons BEGIN -->
<div class="addthis_toolbox addthis_floating_style addthis_counter_style" id="vertical_toolbox">
<a class="addthis_button_facebook_like" fb:like:layout="box_count"></a>
<a class="addthis_button_tweet" tw:count="vertical" tw:via="themotleyfool"></a>
<!--<a class="addthis_button_google_plusone" g:plusone:size="tall"></a>-->
<a class="addthis_button_linkedin_counter" li:counter="top"></a>
<a class="addthis_button_email email_bg">Email</a>
<a class="addthis_button_print print_bg">Print</a>
</div>
</div><!-- /articleTools -->
<div class="promoboxAd">
<div id="div-gpt-ad-470x300-0"></div><script type="text/javascript">var pitcherAds = pitcherAds || PitcherAds();pitcherAds.get({placement: "promobox",divId: "div-gpt-ad-470x300-0",site: "usmf.inv.investing",zone: "articles",width: 470,height: 300,pos: "",position: "0",seg: "default",tile: "3",sub: "default",port: "default",trades: "default",reg: "false",etfticker: "false",ret: "default",mgr: "default",funds: "default",goldticker: "false",bureau: "tech-an-telecom",series: "default",buckettarget: "default",swap: "false",sessionCount: "2",tenOrMoreSessions: "false",type: "272",adtags: "growth,international,tech",tickers: "AAPL,GOOGL,FB,QCOM,TSM,WWAV,IT,SSNLF,SEAS,LNVGY,TWTR,GOOG,LNVGF,SOXX",src: ""});</script>
</div>
<div class="component" id="articleCommentsAjaxContainer">
<input type="hidden" name="ArticleID" id="ArticleID" value="3208784"/>
<div id="comments">
<a name="commentsBoxAnchor" id="commentsBoxAnchor"></a>
<h3 class="boxTop">Comments from our Foolish Readers</h3>
<p class="intro"><strong>Help us keep this a respectfully Foolish area!</strong> This is a place for our readers to discuss, debate, and learn more about the Foolish investing topic you read about above. Help us keep it clean and safe. If you believe a comment is abusive or otherwise violates our <a href="http://www.fool.com/help/index.htm?display=newuser02">Fool's Rules</a>, please report it via the <img src="//g.foolcdn.com/art/article/icn_comment-redhand.gif" alt="Report this Comment" /> <strong>Report this Comment</strong> icon found on every comment.</p>
<div id="ajaxPosts">
<ul id="commentsList" class="truncated">
<li id="comment1022147">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 23, 2014,
at 10:07 PM,
<a href="http://boards.fool.com/Profile.asp?uid=192995981"><strong>argusdc</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">"Activists have succeeded in keeping guests away from its marine life theme parks given the negative publicity about killer whales in captivity"</p><p rel="nofollow">I'm sorry--the cruelty to orcas in captivity is well documented in the documentary Blackfish and employees are less than honest to the public about the health problems these mammals suffer. Consumers are not being 'fickle' here--they are responding here to inhumane treatment of orcas at SeaWorld, which is now a sinking ship. </p></p></div>
</li>
<li id="comment1022153">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 23, 2014,
at 10:41 PM,
<a href="http://boards.fool.com/Profile.asp?uid=1696887620"><strong>SuntanIronMan</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">Given that Cedar Fair trades at a similar earnings multiple, pays a dividend, and isn't subject to animal rights activism, I have a hard time choosing SeaWorld as a possible investment.</p><p rel="nofollow">I not really interested in Cedar Fair either, but if I was interested in an amusement/theme park operator, I couldn't really see myself choosing SeaWorld when there are many other options to choose from (including Disney).</p></p></div>
</li>
<li id="comment1022369">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 25, 2014,
at 9:57 AM,
<a href="http://boards.fool.com/Profile.asp?uid=218178305"><strong>papsrus</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">Rick Munarriz writes:</p><p rel="nofollow">"... Activists have succeeded in keeping guests away from its marine life theme parks given the negative publicity about killer whales in captivity."</p><p rel="nofollow">and </p><p rel="nofollow">" ... guests will eventually follow as the chain either takes active steps to improve its image or fickle consumers move on to a new cause."</p><p rel="nofollow">That pretty much says it all as far as your stand on animal cruelty. </p><p rel="nofollow">"Activists" have not kept paying customers away from Sea World. The exposure of Sea World's own practices is what is keeping paying customers away.</p><p rel="nofollow">And you repeatedly use the term "guests" when what you really mean is "paying customer." A guest is someone I welcome into my home with a cozy embrace. I don't charge them a fee at the door. Your warm and fuzzy language and dismissal of "fickle consumers" doesn't mask what's really going on here.</p><p rel="nofollow">You also did not mention in your "investment thesis" that animal rights activists have been accumulating shares in the company in order to try to have some greater say in the matter, although I'm sure you were aware of it (or should have been before recommending the stock).</p><p rel="nofollow">I wouldn't bet the farm that the issue of Sea World's well-documented mistreatment of animals (and, incidentally, their apparent lethal disregard for the safety of animal trainers as well) simply recedes into our feeble collective memory as "fickle consumers" find more cash to spend on entertainment.</p><p rel="nofollow">A weak investment thesis for a company that is unattractive on so many levels.</p><p rel="nofollow">Disappointed.</p><p rel="nofollow"> </p></p></div>
</li>
<li id="comment1022372">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 25, 2014,
at 10:28 AM,
<a href="http://boards.fool.com/Profile.asp?uid=379938237"><strong>AaronRogers</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">WAH WAH WAH you cry baby no place for money matter replies are pathetic and wasted reading. Investing and making money has nothing to do with your moral values which I strongly disagree with anyways. For the record does anyone care about most the species going extinct. NO. Know why because the population has no experience or knowledge of their existence nor plight. Sea world brings a much needed conciousnes. Anyways Love the Sea World theory and full heartedly agree with it. Are they going bankrupt? Will they returm to stronger profitability? They are priced for bad bad times. Unless they go belly up they soar. Perfect homerun swing pick.</p><p rel="nofollow">The awful pick is White Wave. They have a forecasted declining growth rates with a greater than 3x P:E to growth rate multiple. This stock is way ahead of itsself. How much more can you possibly see in a climate of economic slowdown. Awful. Pick. Borderline pathetic. </p><p rel="nofollow">As to the rest of the picks - REALLY! Can you be more boring. Can you be more bland. Can you be less insightful. Facebook, google, etc... At best these stocks all do well. But this article was BEST STOCKS! Pick ones your readers don't know. Pick ones your readers can learn and research about like White whatever. Pick ones that have a chance to trounce not match the S&P. Atleast white whatever and Sea World have a chance to be the best. All the rest will not even place in the top 20 percent this year. Not the top 30 either. PATHETIC!</p></p></div>
</li>
<li id="comment1022424">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 26, 2014,
at 12:03 AM,
<a href="http://boards.fool.com/Profile.asp?uid=218178305"><strong>papsrus</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">"WAH WAH WAH you cry baby no place for money matter replies are pathetic and wasted reading. ..."</p><p rel="nofollow">You should be commended for attempting to learn a second language. Keep up the hard work.</p></p></div>
</li>
<li id="comment1022480">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 26, 2014,
at 12:21 PM,
<a href="http://boards.fool.com/Profile.asp?uid=306446498"><strong>EnigmaDude</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">Guess it depends on how you define "top stocks" for 2015. Does that mean the ones that will perform the best in terms of % share price increase? Or best time to invest for the long term?</p><p rel="nofollow">My picks for top stocks in terms of % change in share price include Opko Health (OPK), Cadiz (CDZI), and a couple of cheap energy stocks like Encana (ECA).</p><p rel="nofollow">Do your own research, and make constructive comments. Happy new year, Fools!</p></p></div>
</li>
<li id="comment1023440">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 26, 2014,
at 3:21 PM,
<a href="http://boards.fool.com/Profile.asp?uid=297672311"><strong>clematisclem</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">"Investing and making money has nothing to do with your moral values..."</p><p rel="nofollow">...to you. Warren Buffett advised investors to invest in companies that they believe in. I do not believe in SeaWorld's practices, and judging by the falling attendance, many others similarly do not. As a result of falling revenues due to people making other entertainment choices based at least in part on their moral values, Sea World's stock price has declined and the dividend was delayed. Obviously making money and moral values are not always separate issues. </p></p></div>
</li>
<li id="comment1023489">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 27, 2014,
at 1:14 AM,
<a href="http://boards.fool.com/Profile.asp?uid=379938237"><strong>AaronRogers</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">LOL yeah tell that to constellation investors and their 48% this year. I'd have never guessed that for an over priced stock. And I commend those that were and drank the kool aid. Enjoy buying some stock in UNICEF. Sea World is a great pick for an article. Might go bad. But if his theory is right he trounces. Great read. Great idea. That was my point originally. You dont have to agree w his pick but that is what due diligence and personal risk tolerances are for. </p><p rel="nofollow">Apple...Yeah dude great call. What kind of run can that have? Long term all tech stocks are bad for the other commentor. Pick 1 long term that has rewarded investors...congrats you named a few. Look at the fail list. BTW- most investors in apple are on that one (remember when it went to 7).</p></p></div>
</li>
<li id="comment1024126">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 28, 2014,
at 5:19 PM,
<a href="http://boards.fool.com/Profile.asp?uid=1938883265"><strong>TMFHamFoolery</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">@enigmadude...best to invest for the long-term. Even through the end of 2015 is rather short term for Fool investing. </p></p></div>
</li>
<li id="comment1024196">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 28, 2014,
at 8:02 PM,
<a href="http://boards.fool.com/Profile.asp?uid=1697785421"><strong>Trololololo</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">Regarding the recommendations of the MF staff, my biggest concern for each of these have to do with valuation, especially at this stage of the bull market. Facebook is a good example. Despite its growth and promise, Facebook trades at a very high earnings multiple and PEG, something I found with many of the recommendations above. </p><p rel="nofollow">Yes, I know. You can't judge a business by its earnings alone. But something that increasingly worries me about so many MF recommendations is that I read nothing but "feel-good movie of the summer!!!" stories tied to them without a close look on whether their growth will ever catch up to the PE applied to them by the market. It might be one thing when a bull market is just getting its legs. But I am concerned that we are getting into the latter stages of a remarkable rally. And at some point, the party will end, and the seas will roll back, letting us see who was swimming naked.</p><p rel="nofollow">Call me wrong and point me to the errors in my ways. But when I first joined the Motley Fool, I did so because the Gardner brothers pounded the table on the notion of not paying too much for an investment in the style of Graham, Dodd and Buffett. Today however I am left with the impression that the hierarchy of the Motley Fool does not think this is important. And that deeply concerns me.</p><p rel="nofollow">Don't get me wrong – I'm all for growth, but at a reasonable price. And the recommendations above, excellent companies notwithstanding, appear to be far too rich for my blood. </p><p rel="nofollow">FOOLS: Please reply with your thoughts. I'm not afraid of criticism; in fact, quite the opposite. It's an opportunity to learn from you. Thanks in advance.</p></p></div>
</li>
<li id="comment1024207">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 28, 2014,
at 8:35 PM,
<a href="http://boards.fool.com/Profile.asp?uid=1717589950"><strong>EvanBuck</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">@Trololololo: Your comment is remarkably insightful for someone with such a..."non-serious" username.</p></p></div>
</li>
<li id="comment1024243">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 28, 2014,
at 10:29 PM,
<a href="http://boards.fool.com/Profile.asp?uid=1610938433"><strong>phexac</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">Trololololo, I am right there with you. I canceled my SA subscription because the methodology for recommendations becomes complete garbage. There was no sign of analysis or consideration given to what price is ok to pay for a particular stock, and more and more recommendations were trending towards momentum overhyped story stocks with earnings multiples in the stratosphere. Moreover, those stocks were implied as good buys at any price and at any stage of the hype cycle.</p><p rel="nofollow">Furthermore, if you look at the prices of SA recommendations and replace each recommended stock buy with S&P 500, then since 2011, SA has underperformed the market by a significant margin.</p><p rel="nofollow">MOREOVER, when you looked at the stock price history of the SA picks, you also saw those stocks could not be obtained for the prices listed in the SA recommendation history, as in most cases prices that low did not occur for weeks either before or after the recommendations. This last part is a huge deal since it basically means that SA subscribers can never ever even approach the advertised SA results because the performance advertised for the service is based on prices that didn't exist at the time of recommendations. In many cases the in listed purchase price was over 10% lower than the bottom of the range for the stock price for several weeks before or after the recommendation date.</p><p rel="nofollow">So due to the "methodology" based on feel good stories, reported under performance, and very importantly outright lies as to the prices for their picks, I saw this service for what it is--one that is completely worthless and trying to sell lucky picks of NFLX and AMZN 10+ years ago as some ability to stock pick well.</p><p rel="nofollow">Bottom line is, I agree with you, MF writers' methodology for recommending stocks is worthless as are the services they offer.</p></p></div>
</li>
<li id="comment1024341">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 29, 2014,
at 9:17 AM,
<a href="http://boards.fool.com/Profile.asp?uid=49944"><strong>bloomr</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">Purchase prices are dividend-adjusted, as is the S&P benchmark comparison. I have been a Fool reader for over 15 years, and I have not seen any shenanigans with their purchase price claims. They also wait to buy a stock for at least a day after they recommend it, so they don't take advantage of the "bump" some stocks get on the day of the rec.</p></p></div>
</li>
<li id="comment1024353">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 29, 2014,
at 10:18 AM,
<a href="http://boards.fool.com/Profile.asp?uid=1610938433"><strong>phexac</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">Bloom, as I mentioned in my post, the prices they list often don't occur for weeks before or after the recommendation, so a short waiting period is definitely not in play here.</p><p rel="nofollow">The S&P price is accurate usually though, so for my money, there is definitely shenanigans going on.</p><p rel="nofollow">And even with those, since start of 2011, their picks have underperformed the market.</p></p></div>
</li>
<li id="comment1024375">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 29, 2014,
at 11:13 AM,
<a href="http://boards.fool.com/Profile.asp?uid=204409526"><strong>TMFBomb</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">@Trololololo, phexac, and bloomr,</p><p rel="nofollow">In terms of stock selection, The Motley Fool believes in finding great companies and investing for the long term (years and decades, not days and months) and that market timing doesn't work. We also believe in listening to a diversity of opinion...that means we can disagree with each other...for instance, the analysts who contributed to this article can disagree with each other and can disagree with the analysts on our premium services like Motley Fool Stock Advisor.</p><p rel="nofollow">One person's overvalued stock based on a high P/E ratio is another person's undervalued stock because of the belief in factors such as future growth, a strong moat enabling sustainability of earnings and market relevance, a misunderstood accounting nuance, a one-time item, etc.</p><p rel="nofollow">Because opinions and strategies differ, we focus on being highly transparent with our premium picks, including maintaining a scorecard of every pick's performance vs. the S&P 500. We take the integrity of that reporting very seriously. Here is what we say in our FAQ for Motley Fool Stock Advisor members:</p><p rel="nofollow">"How do you track the performance of the stocks you recommend?</p><p rel="nofollow">We provide a scorecard of comprehensive performance data online. The scorecard tracks both active stocks and ones we’ve recommended selling — look for sold stocks in the David vs. Tom view of the online scorecard.</p><p rel="nofollow">As of Jan. 26, 2011, we use total average returns on our scorecard. Total average returns are the average of all individual stock recommendations (active and sold) and the average of the S&P 500 Total Return Index, starting from the end of the day we make each recommendation. Both the stock and benchmark returns include reinvested dividends, splits, and adjustments for other corporate actions such as spinoffs and acquisitions, if applicable.</p><p rel="nofollow">On the David vs. Tom comparison page, the column “vs. S&P” is calculated by taking the difference in the return of the recommendation and the return of the S&P 500 over the same period. It's measured in percentage points.</p><p rel="nofollow">Our returns are verified by Alpha Performance Verification Services"</p><p rel="nofollow">The link to their latest report is here:</p><p rel="nofollow"><a rel="nofollow" href="http://g.fool.com/art/newsletters/18/images/The%20Motley%20Fool%20Opinion.pdf">http://g.fool.com/art/newsletters/18/images/The%20Motley%20F...</a></p><p rel="nofollow">Fool on,</p><p rel="nofollow">Anand Chokkavelu, CFA (Editorial Director of <a rel="nofollow" href="http://Fool.com">Fool.com</a>)</p></p></div>
</li>
<li id="comment1024393">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 29, 2014,
at 12:15 PM,
<a href="http://boards.fool.com/Profile.asp?uid=1610938433"><strong>phexac</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">You can tell by the lack of actual denial in Bomb's post of the practice mismatching the price of stock picks with the recommendation date price I described above in Bomb's that their price point picking is exactly as I described.</p><p rel="nofollow">"One person's overvalued stock based on a high P/E ratio is another person's undervalued stock because of the belief in factors such as future growth"</p><p rel="nofollow">This is the typical nebulous declaration followed by an SA stock pick based on more fuzzy feeling about how fantastic a company is and completely ignoring that price you pay for a security is one of the most important factors in determining returns.</p><p rel="nofollow">I suggest anyone with SA subscription go to the page with recommendation and do your own research. See if the price on recommendation date is within the range where stock traded on or around that date. Then check the returns against actual obtainable stock price vs S&P. Then see how SA has done since 2011. Then see how SA has done if you take out AMZN and NFLX from early 2000s. You will see that what's left is a bunch of mediocre picks based on nebulous beliefs that are pretty average.</p><p rel="nofollow">And just one more time, any stock advising service that treats a stock as equally good buy regardless of price (often different by a factor) is worse than worthless.</p><p rel="nofollow">Just look at DDD, which SA touted from about $18 all the way to $80+ post stock split. If you bought at 18, sure it was ok, though not spectacular. If you bought at 80, over half of your money is gone.</p><p rel="nofollow">Price matters and by acting like it doesn't MF team is basically insulting everyone's intelligence.</p></p></div>
</li>
<li id="comment1024398">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 29, 2014,
at 12:30 PM,
<a href="http://boards.fool.com/Profile.asp?uid=1610938433"><strong>phexac</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">Oh and when someone tells you, our results are verified by XYZ, it's a meaningless statement unless you know exactly what's being verified and what the process is. Judging by the TFM response, it's not the type of verification that would do anything about using prices on dates different from the recommendations.</p><p rel="nofollow">And the thing is, if it were the case TMF just buys the stock on some other date for operational reasons, that's fine, but you would expect roughly half the prices to be above and half below the recommend on date price range. However, in SA case, the prices I checked for 2011 and 2012 are ALWAYS lower than on the recommendation date.</p><p rel="nofollow">When you see something like this, you know you are being lied to.</p></p></div>
</li>
<li id="comment1024400">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 29, 2014,
at 12:46 PM,
<a href="http://boards.fool.com/Profile.asp?uid=1704953680"><strong>Mathman6577</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">^^^ No matter what TMFBomb said (and in many cases other Fools have said in the past) in his comment, many of the Fools still pick their stocks based upon personal opinions regarding the company, the CEO, or a political agenda (which is becoming more and more prevalent).</p><p rel="nofollow">If it meets their green energy (solar and wind), ObamaCare, min. wage, or income inequality narrative expect Fools to weigh in positively, even if the P/E is at 200 or the company has never made any money.</p><p rel="nofollow">If the CEO is a golden boy or girl in their eyes the stock is automatically a recommendation (Jeff Bezos can do no wrong -- even if AMZN doesn't turn a profit they will make excuses such as the "company is planning for the future").</p><p rel="nofollow">If the company goes against their narrative (think WMT, MCD, and many big oil companies) the stock gets bashed.</p><p rel="nofollow">Apple products are always being compared against "superior" Android products on one or two features (that most users do not care about). The forest is always missed thru the trees when it comes to Apple. </p></p></div>
</li>
<li id="comment1024476">
<div class="commentHead">
<h6>
<a href="#" title="Report this Comment" class="foolcop redflag"><span>Report this Comment</span></a>
On December 29, 2014,
at 4:52 PM,
<a href="http://boards.fool.com/Profile.asp?uid=379938237"><strong>AaronRogers</strong></a> wrote:
</h6>
</div>
<div class="commentPost"><p><p rel="nofollow">LOL! So everyone is bombing MF on how they calculate their scoring. I am and so should everyone else be confident in how they score their picks. Its a very simple calculation. They don't always hype themselves. Hidden Gems showed a lesser return for quite a while. </p><p rel="nofollow">However, I definitely agree with the poster with regard to the divergence away from graham style. I don't think MF has because of lack of principle but rather more simplistic explanations and articles. I would like to see MF get back to their more complicated articles that require research to completely follow. The conclusion paragraph works well for those who just want a quick answer to what picks and why. However, I feel MF used to challenge us as readers to learn more and teach more. If they are recommending sky high P/E stocks they should type more explaining that the growth rates show an expanded P/E is worthwhile and what is considered to be a reasonable ratio of growth rate to P/E. The articles have become more USA Today like is basically what I'm saying. The banking/black swan article is a great example of a great article. I actually have to look up the exact ratio and how it is calculated. However, it was in depth and educational while challenging and provided a quirky and interesting twist on investments within the sector.</p><p rel="nofollow">However, I think everyone can trust how they score their advice and picks.</p><p rel="nofollow">What I don't like about these picks is how bland and generic can they be. Its impossible for Apple to be a true top stock. Way to BIG with no new tech. to be ground breaking and dominant. MF used to find more obscure and perhaps more risky companies.</p></p></div>
</li>
<li id="comment1024491">
<div class="commentHead">
<h6>