summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/marketwatch/source.html
blob: 080f03dd81f4cb3c7a7c1e5609a5699304b630e0 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
<!DOCTYPE html>
<html lang="en-US">
<head>
  <title>Home prices are still on fire, Case-Shiller data show - MarketWatch</title>
  <link id="canonical-link" rel="canonical" href="https://www.marketwatch.com/story/home-prices-are-still-on-fire-case-shiller-data-show-2018-03-27" />
  <link rel="amphtml" href="https://www.marketwatch.com/amp/story/guid/0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD" />
      <link rel="alternate" href="mwatch://article?id=0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD" />
      <meta name="apple-itunes-app" content="app-id=336693422,app-argument=mwatch://article?id=0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD" />
<link href="https://mw4.wsj.net/mw5/content/images/favicons/apple-touch-icon.png" rel="apple-touch-icon"/>
<link href="https://mw4.wsj.net/mw5/content/images/favicons/apple-touch-icon-152x152.png" rel="apple-touch-icon" sizes="152x152"/>
<link href="https://mw4.wsj.net/mw5/content/images/favicons/apple-touch-icon-167x167.png" rel="apple-touch-icon" sizes="167x167"/>
<link href="https://mw4.wsj.net/mw5/content/images/favicons/apple-touch-icon-180x180.png" rel="apple-touch-icon" sizes="180x180"/>
<link href="https://mw4.wsj.net/mw5/content/logos/favicon.ico" rel="shortcut icon"/>
    <link href='https://sts3.wsj.net/bucket-a/foxtrot/public/article.min-b0b1af56eb.css' media='all' rel='stylesheet' type='text/css'/>
    <script src='https://sts3.wsj.net/bucket-a/foxtrot/public/article.min-ebaf39a94a.js' type='text/javascript'></script>
    <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="page.site" content="marketwatch" />
<meta name="apple-itunes-app" content="app-id=336693422" />
<meta property="fb:app_id" content="283204329838" />
<meta property="og:site_name" content="MarketWatch" />
<meta name="twitter:site:id" content="624413" />
<meta name="twitter:domain" content="marketwatch.com" />
<meta name="article.content_group" content="marketwatch" />
<meta name="article.id" content="0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD" />
<meta name="article.section" content="Economy & Politics" />
<meta property="article:publisher" content="https://www.facebook.com/marketwatch" />
<meta name="author" content="Andrea Riquier" />
<meta name="description" content="House prices show no sign of slowing down, according to a closely-watched index out Tuesday." />
<meta property="og:description" content="House prices show no sign of slowing down, according to a closely-watched index out Tuesday." />
<meta name="twitter:description" content="House prices show no sign of slowing down, according to a closely-watched index out Tuesday." />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://www.marketwatch.com/story/home-prices-are-still-on-fire-case-shiller-data-show-2018-03-27" />
<meta property="og:title" content="Home prices are still on fire, Case-Shiller data show" />
<meta name="article.column" content="Economic Report" />
<meta name="article.doctype" content="103" />
<meta name="article.template" content="Normal" />
<meta name="news_keywords" content="Construction and Materials,Manufacturing" />
<meta name="robots" content="noarchive,noodp" />
<meta property="og:image" content="http://s.marketwatch.com/public/resources/MWimages/MW-GG178_realty_ZG_20180323163027.jpg" />
<meta name="twitter:domain" content="marketwatch.com" />
<meta name="twitter:image" content="http://s.marketwatch.com/public/resources/MWimages/MW-GG178_realty_ZG_20180323163027.jpg" />
<meta name="twitter:image:width" content="1320" />
<meta name="twitter:image:height" content="742" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@ARiquier" />
<meta name="parsely-title" content="Home prices are still on fire, Case-Shiller data show" />
<meta name="parsely-link" content="https://www.marketwatch.com/story/home-prices-are-still-on-fire-case-shiller-data-show-2018-03-27" />
<meta name="parsely-type" content="post" />
<meta name="parsely-section" content="Economy & Politics" />
<meta name="parsely-author" content="Andrea Riquier" />
<meta name="parsely-pub-date" content="2018-03-27T09:00:00-04:00" />
<meta name="parsely-post-id" content="0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD" />
<meta name="parsely-tags" content="PageType: Article, Column: Economic Report, Doctype: 103, Template: Normal, MW-Industry: Construction and Materials, MW-Industry: Manufacturing, GUID: 0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD, Industry: Construction/Real Estate, Subject: Economic News" />
<meta name="keywords" content="construction, real estate, economic news, united states" />
    <meta name="theme-color" content="#2e2e2f" />
  <script type="text/javascript">
    window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o?o:e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({QJf3ax:[function(t,e){function n(t){function e(e,n,a){t&&t(e,n,a),a||(a={});for(var c=s(e),f=c.length,u=i(a,o,r),d=0;f>d;d++)c[d].apply(u,n);return u}function a(t,e){f[t]=s(t).concat(e)}function s(t){return f[t]||[]}function c(){return n(e)}var f={};return{on:a,emit:e,create:c,listeners:s,_events:f}}function r(){return{}}var o="nr@context",i=t("gos");e.exports=n()},{gos:"7eSDFh"}],ee:[function(t,e){e.exports=t("QJf3ax")},{}],3:[function(t){function e(t,e,n,i,s){try{c?c-=1:r("err",[s||new UncaughtException(t,e,n)])}catch(f){try{r("ierr",[f,(new Date).getTime(),!0])}catch(u){}}return"function"==typeof a?a.apply(this,o(arguments)):!1}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function n(t){r("err",[t,(new Date).getTime()])}var r=t("handle"),o=t(5),i=t("ee"),a=window.onerror,s=!1,c=0;t("loader").features.err=!0,window.onerror=e,NREUM.noticeError=n;try{throw new Error}catch(f){"stack"in f&&(t(1),t(4),"addEventListener"in window&&t(2),window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&t(3),s=!0)}i.on("fn-start",function(){s&&(c+=1)}),i.on("fn-err",function(t,e,r){s&&(this.thrown=!0,n(r))}),i.on("fn-end",function(){s&&!this.thrown&&c>0&&(c-=1)}),i.on("internal-error",function(t){r("ierr",[t,(new Date).getTime(),!0])})},{1:8,2:5,3:9,4:7,5:20,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],4:[function(t){function e(){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var n=t("ee"),r=t("handle"),o=t(2);t("loader").features.stn=!0,t(1),n.on("fn-start",function(t){var e=t[0];e instanceof Event&&(this.bstStart=Date.now())}),n.on("fn-end",function(t,e){var n=t[0];n instanceof Event&&r("bst",[n,e,this.bstStart,Date.now()])}),o.on("fn-start",function(t,e,n){this.bstStart=Date.now(),this.bstType=n}),o.on("fn-end",function(t,e){r("bstTimer",[e,this.bstStart,Date.now(),this.bstType])}),n.on("pushState-start",function(){this.time=Date.now(),this.startPath=location.pathname+location.hash}),n.on("pushState-end",function(){r("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),"addEventListener"in window.performance&&(window.performance.addEventListener("webkitresourcetimingbufferfull",function(){r("bstResource",[window.performance.getEntriesByType("resource")]),window.performance.webkitClearResourceTimings()},!1),window.performance.addEventListener("resourcetimingbufferfull",function(){r("bstResource",[window.performance.getEntriesByType("resource")]),window.performance.clearResourceTimings()},!1)),document.addEventListener("scroll",e,!1),document.addEventListener("keypress",e,!1),document.addEventListener("click",e,!1)}},{1:6,2:8,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],5:[function(t,e){function n(t){i.inPlace(t,["addEventListener","removeEventListener"],"-",r)}function r(t){return t[1]}var o=(t(1),t("ee").create()),i=t(2)(o),a=t("gos");if(e.exports=o,n(window),"getPrototypeOf"in Object){for(var s=document;s&&!s.hasOwnProperty("addEventListener");)s=Object.getPrototypeOf(s);s&&n(s);for(var c=XMLHttpRequest.prototype;c&&!c.hasOwnProperty("addEventListener");)c=Object.getPrototypeOf(c);c&&n(c)}else XMLHttpRequest.prototype.hasOwnProperty("addEventListener")&&n(XMLHttpRequest.prototype);o.on("addEventListener-start",function(t){if(t[1]){var e=t[1];"function"==typeof e?this.wrapped=t[1]=a(e,"nr@wrapped",function(){return i(e,"fn-",null,e.name||"anonymous")}):"function"==typeof e.handleEvent&&i.inPlace(e,["handleEvent"],"fn-")}}),o.on("removeEventListener-start",function(t){var e=this.wrapped;e&&(t[1]=e)})},{1:20,2:21,ee:"QJf3ax",gos:"7eSDFh"}],6:[function(t,e){var n=(t(2),t("ee").create()),r=t(1)(n);e.exports=n,r.inPlace(window.history,["pushState"],"-")},{1:21,2:20,ee:"QJf3ax"}],7:[function(t,e){var n=(t(2),t("ee").create()),r=t(1)(n);e.exports=n,r.inPlace(window,["requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame"],"raf-"),n.on("raf-start",function(t){t[0]=r(t[0],"fn-")})},{1:21,2:20,ee:"QJf3ax"}],8:[function(t,e){function n(t,e,n){var r=t[0];"string"==typeof r&&(r=new Function(r)),t[0]=o(r,"fn-",null,n)}var r=(t(2),t("ee").create()),o=t(1)(r);e.exports=r,o.inPlace(window,["setTimeout","setInterval","setImmediate"],"setTimer-"),r.on("setTimer-start",n)},{1:21,2:20,ee:"QJf3ax"}],9:[function(t,e){function n(){c.inPlace(this,d,"fn-")}function r(t,e){c.inPlace(e,["onreadystatechange"],"fn-")}function o(t,e){return e}var i=t("ee").create(),a=t(1),s=t(2),c=s(i),f=s(a),u=window.XMLHttpRequest,d=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"];e.exports=i,window.XMLHttpRequest=function(t){var e=new u(t);try{i.emit("new-xhr",[],e),f.inPlace(e,["addEventListener","removeEventListener"],"-",function(t,e){return e}),e.addEventListener("readystatechange",n,!1)}catch(r){try{i.emit("internal-error",[r])}catch(o){}}return e},window.XMLHttpRequest.prototype=u.prototype,c.inPlace(XMLHttpRequest.prototype,["open","send"],"-xhr-",o),i.on("send-xhr-start",r),i.on("open-xhr-start",r)},{1:5,2:21,ee:"QJf3ax"}],10:[function(t){function e(t){if("string"==typeof t&&t.length)return t.length;if("object"!=typeof t)return void 0;if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if("undefined"!=typeof FormData&&t instanceof FormData)return void 0;try{return JSON.stringify(t).length}catch(e){return void 0}}function n(t){var n=this.params,r=this.metrics;if(!this.ended){this.ended=!0;for(var i=0;c>i;i++)t.removeEventListener(s[i],this.listener,!1);if(!n.aborted){if(r.duration=(new Date).getTime()-this.startTime,4===t.readyState){n.status=t.status;var a=t.responseType,f="arraybuffer"===a||"blob"===a||"json"===a?t.response:t.responseText,u=e(f);if(u&&(r.rxSize=u),this.sameOrigin){var d=t.getResponseHeader("X-NewRelic-App-Data");d&&(n.cat=d.split(", ").pop())}}else n.status=0;r.cbTime=this.cbTime,o("xhr",[n,r,this.startTime])}}}function r(t,e){var n=i(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}if(window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&!/CriOS/.test(navigator.userAgent)){t("loader").features.xhr=!0;var o=t("handle"),i=t(2),a=t("ee"),s=["load","error","abort","timeout"],c=s.length,f=t(1);t(4),t(3),a.on("new-xhr",function(){this.totalCbs=0,this.called=0,this.cbTime=0,this.end=n,this.ended=!1,this.xhrGuids={}}),a.on("open-xhr-start",function(t){this.params={method:t[0]},r(this,t[1]),this.metrics={}}),a.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),a.on("send-xhr-start",function(t,n){var r=this.metrics,o=t[0],i=this;if(r&&o){var f=e(o);f&&(r.txSize=f)}this.startTime=(new Date).getTime(),this.listener=function(t){try{"abort"===t.type&&(i.params.aborted=!0),("load"!==t.type||i.called===i.totalCbs&&(i.onloadCalled||"function"!=typeof n.onload))&&i.end(n)}catch(e){try{a.emit("internal-error",[e])}catch(r){}}};for(var u=0;c>u;u++)n.addEventListener(s[u],this.listener,!1)}),a.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),a.on("xhr-load-added",function(t,e){var n=""+f(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),a.on("xhr-load-removed",function(t,e){var n=""+f(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),a.on("addEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-added",[t[1],t[2]],e)}),a.on("removeEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-removed",[t[1],t[2]],e)}),a.on("fn-start",function(t,e,n){e instanceof XMLHttpRequest&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=(new Date).getTime()))}),a.on("fn-end",function(t,e){this.xhrCbStart&&a.emit("xhr-cb-time",[(new Date).getTime()-this.xhrCbStart,this.onload,e],e)})}},{1:"XL7HBI",2:11,3:9,4:5,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],11:[function(t,e){e.exports=function(t){var e=document.createElement("a"),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split("://");return!r.port&&o[1]&&(r.port=o[1].split("/")[0].split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname),r.sameOrigin=!e.hostname||e.hostname===document.domain&&e.port===n.port&&e.protocol===n.protocol,r}},{}],gos:[function(t,e){e.exports=t("7eSDFh")},{}],"7eSDFh":[function(t,e){function n(t,e,n){if(r.call(t,e))return t[e];var o=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:o,writable:!0,enumerable:!1}),o}catch(i){}return t[e]=o,o}var r=Object.prototype.hasOwnProperty;e.exports=n},{}],D5DuLP:[function(t,e){function n(t,e,n){return r.listeners(t).length?r.emit(t,e,n):(o[t]||(o[t]=[]),void o[t].push(e))}var r=t("ee").create(),o={};e.exports=n,n.ee=r,r.q=o},{ee:"QJf3ax"}],handle:[function(t,e){e.exports=t("D5DuLP")},{}],XL7HBI:[function(t,e){function n(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:i(t,o,function(){return r++})}var r=1,o="nr@id",i=t("gos");e.exports=n},{gos:"7eSDFh"}],id:[function(t,e){e.exports=t("XL7HBI")},{}],loader:[function(t,e){e.exports=t("G9z0Bl")},{}],G9z0Bl:[function(t,e){function n(){var t=p.info=NREUM.info;if(t&&t.agent&&t.licenseKey&&t.applicationID&&c&&c.body){p.proto="https"===d.split(":")[0]||t.sslForHttp?"https://":"http://",a("mark",["onload",i()]);var e=c.createElement("script");e.src=p.proto+t.agent,c.body.appendChild(e)}}function r(){"complete"===c.readyState&&o()}function o(){a("mark",["domContent",i()])}function i(){return(new Date).getTime()}var a=t("handle"),s=window,c=s.document,f="addEventListener",u="attachEvent",d=(""+location).split("?")[0],p=e.exports={offset:i(),origin:d,features:{}};c[f]?(c[f]("DOMContentLoaded",o,!1),s[f]("load",n,!1)):(c[u]("onreadystatechange",r),s[u]("onload",n)),a("mark",["firstbyte",i()])},{handle:"D5DuLP"}],20:[function(t,e){function n(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(0>o?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=n},{}],21:[function(t,e){function n(t){return!(t&&"function"==typeof t&&t.apply&&!t[i])}var r=t("ee"),o=t(1),i="nr@wrapper",a=Object.prototype.hasOwnProperty;e.exports=function(t){function e(t,e,r,a){function nrWrapper(){var n,i,s,f;try{i=this,n=o(arguments),s=r&&r(n,i)||{}}catch(d){u([d,"",[n,i,a],s])}c(e+"start",[n,i,a],s);try{return f=t.apply(i,n)}catch(p){throw c(e+"err",[n,i,p],s),p}finally{c(e+"end",[n,i,f],s)}}return n(t)?t:(e||(e=""),nrWrapper[i]=!0,f(t,nrWrapper),nrWrapper)}function s(t,r,o,i){o||(o="");var a,s,c,f="-"===o.charAt(0);for(c=0;c<r.length;c++)s=r[c],a=t[s],n(a)||(t[s]=e(a,f?s+o:o,i,s,t))}function c(e,n,r){try{t.emit(e,n,r)}catch(o){u([o,e,n,r])}}function f(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){u([r])}for(var o in t)a.call(t,o)&&(e[o]=t[o]);return e}function u(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=r),e.inPlace=s,e.flag=i,e}},{1:20,ee:"QJf3ax"}]},{},["G9z0Bl",3,10,4]);
    ;NREUM.info={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",licenseKey:"6e882eab2f",applicationID:"4126423",sa:1,agent:"js-agent.newrelic.com/nr-476.min.js"}
  </script>
  <script>
      var slotMachine = (function () {
          var _slots = {};
          return {
              add: function(name, slot, id) {
                  if (!_slots[name]) { _slots[name] = {} };
                  _slots[name].slot = slot;
                  _slots[name].id = id;
              },
              get: function(key) {
                  if (typeof key === 'string') {
                      return _slots[key];
                  }
                  else if (typeof key === 'object') {
                      for (var name in _slots) {
                          if (_slots.hasOwnProperty(name) && _slots[name].slot === key) {
                              return name;
                          }
                      }
                  }
              },
              getAll: function(device) {
                  return _slots;
              },
              onRenderEnd: function (event) {
                  var name = slotMachine.get(event.slot);
                  if (_slots[name]) {
                      _slots[name].rendered = true;
                  }
                  if ($) {
                      //$(window).trigger('adRendered', { name: name, slot: event.slot });
                      $('#' + _slots[name].id).trigger('rendered', { name: name, slot: event.slot });
                  }
              },
              slots: _slots
          }
      })();
    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);
    })();

    googletag.cmd.push(function() {
        googletag.pubads().disableInitialLoad();
        googletag.pubads().addEventListener('slotRenderEnded', slotMachine.onRenderEnd);
        googletag.enableServices();
    });


        var prebidEnabled = true;
  </script>


  <script>
    var _sf_startpt=(new Date()).getTime();
  </script>
  <script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body class="with-hero ">

<section class="container container--masthead">
<div class="region region--full fixed">

    <input type="checkbox" class="hidden toggle--menu" id="main-menu"/>
    <header class="column column--full masthead full-width">
        <label class="btn btn--menu" for="main-menu" tabindex="1" data-focused="0">
            <i class="icon"></i>
        </label>

        <h1 class="logo">
            <a href="//www.marketwatch.com/" data-track-code="MW_Masthead_Logo">
                <svg focusable="false" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 697.5 99.8" style="enable-background:new 0 0 697.5 99.8;" xml:space="preserve" role="img" aria-labelledby="mw-site-logo">
                    <title id="mw-site-logo">MarketWatch site logo</title>
                    <style type="text/css">
                        .svg1{fill:#ffffff;}
                        .svg2{fill:#00AC4E;}
                    </style>
                <g>
                    <g>
                        <path class="svg1" d="M168.9,41.8l-1.2,5.9h-0.3c-1.5-3.3-5.7-7.9-15-7.9c-15,0-30.3,11.6-33.7,29.9c-2.9,16,4.8,30.1,22.6,30.1
                        c6.5,0,14-2.5,17.9-8h0.3l-1.1,6H175l10.4-56H168.9z M163.5,69.7c-1.1,5.5-6.3,14.4-16.7,14.4c-10.2,0-12.3-9-11.4-14.2
                        c1.2-6.4,6.9-14.4,16.6-14.4C161.5,55.6,164.7,63.1,163.5,69.7z"></path>
                        <path class="svg1" d="M194.8,41.8h15.6l-1.1,5.9h0.3c2-2.7,5.9-7.9,15.5-7.9l-3.1,17c-7.9,0.1-13.6,1.7-15.1,10.3l-5.7,30.7h-16.8
                        L194.8,41.8z"></path>
                        <polygon class="svg1" points="236.4,19.9 253.2,19.9 245.3,62.1 245.6,62.1 265,41.8 284.7,41.8 259.1,66.4 273.8,97.8 254.8,97.8
                        244,70.8 243.7,70.8 238.8,97.8 221.9,97.8       "></polygon>
                        <path class="svg1" d="M311.6,39.8c-17,0-32.1,14.6-34.9,30.2c-3.1,16.6,8.1,29.7,24.2,29.7c5.7,0,11.6-1.7,16.8-5.1
                        c5.3-3.2,10.2-8,14-14.3h-17.1c-2.8,2.9-6,5.2-11.2,5.2c-6.5,0-11.4-3.9-11.1-10.6h42c0.5-1.3,0.8-2.3,1.2-4.4
                        C338.7,53.4,328.7,39.8,311.6,39.8z M294.6,63.6c1.3-3.3,5.9-9.6,14.6-9.6c8.7,0,10.8,6.3,10.8,9.6H294.6z"></path>
                        <polygon class="svg1" points="96.5,19.9 66.9,64.3 66.7,64.3 66.7,19.9 52.4,19.9 0,97.8 20.3,97.8 49.7,53.4 50,53.4 50,97.8
                        64.4,97.8 93.8,53.4 94.1,53.4 94.1,97.8 110.9,97.8 110.9,19.9       "></polygon>
                        <path class="svg1" d="M378,41.8h-10.6l3.1-16.6h-14.7l-1.2,6.4c-1.3,7.3-5.9,9.5-12,10.2h-0.1L340,54.5h8.3l-8,43.3H357l8-43.3
                        h10.7L378,41.8z"></path>
                    </g>
                    <g>
                        <path class="svg2" d="M637.2,76.6c-5.5,12.7-18.6,23.1-33.7,23.1c-17,0-27.5-13.4-24.5-30.1c3.1-16.4,18.3-29.8,35.1-29.8
                        c14.8,0,25,9.9,25.3,23.6h-17c-1.1-3.9-3.6-7.9-10.7-7.9c-7.9-0.4-14.4,6.1-15.9,14.2c-1.5,8.2,2.7,14.3,10.7,14.3
                        c6.9,0,11.1-4,13.5-7.5H637.2z M498.4,0l-32.6,19.9h9.2l-29.5,44.4h-0.3V19.9h-14.4l-29.5,44.4H401V19.9h-16.8v77.9h14.6
                        l29.5-44.4h0.3v44.4h14.4l52.2-77.9h8.3L498.4,0z M530.2,97.8h-16.6l1.1-6h-0.3c-3.9,5.5-11.4,8-17.9,8
                        c-17.8,0-25.5-14-22.6-30.1c3.3-18.3,18.7-29.9,33.7-29.9c9.2,0,13.5,4.5,15,7.9h0.3l1.2-5.9h16.6L530.2,97.8z M502,84.2
                        c10.4,0,15.6-9,16.7-14.4c1.2-6.7-2-14.2-11.5-14.2c-9.6,0-15.4,8-16.6,14.4C489.7,75.2,491.8,84.2,502,84.2L502,84.2z
                        M582.5,41.8H572l3.1-16.6h-14.7l-1.2,6.4c-1.3,7.3-5.9,9.5-12,10.2H547l-2.4,12.7h8.3l-8,43.3h16.7l8-43.3h10.7L582.5,41.8z
                        M653,19.9h16.7l-5.1,27.8h0.3c3.6-5.2,8.4-7.9,15.8-7.9c5.3,0,11.4,2,14.2,6.3c3.6,5.5,3.2,10.4,1.3,20.4l-5.7,31.3h-16.7
                        l5.6-30.5c0.5-2.7,2.1-11.8-6.8-11.8c-9.4,0-11,8.4-11.5,11.2l-5.7,31h-16.7L653,19.9z"></path>
                    </g>
                </g>
                </svg>
            </a>
        </h1>

        <ul class="list list--menu">
            <li class="menu__item" data-section="Latest" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/latest-news">Latest</a></li>
            <li class="menu__item" data-section="Watchlist" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/watchlist">Watchlist</a></li>
            <li class="menu__item" data-section="Markets" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/markets">Markets</a></li>
            <li class="menu__item" data-section="Investing" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/investing">Investing</a></li>
            <li class="menu__item" data-section="Barron&#39;s" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/investing/barrons">Barron&#39;s</a></li>
            <li class="menu__item" data-section="Economy" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/economy-politics">Economy</a></li>
            <li class="menu__item" data-section="Personal Finance" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/personal-finance">Personal Finance</a></li>
            <li class="menu__item" data-section="Retirement" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/retirement">Retirement</a></li>
            <li class="menu__item" data-section="Video" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/video">Video</a></li>
            <li class="menu__item" data-section="Opinion" data-click-through="top_nav"><a class="link" href="https://www.marketwatch.com/newsroom/opinion">Opinion</a></li>
        </ul>

        <div class="profile">
            <div class="account-links">
                <a class="btn btn--text btn--signup" class="user" data-identity="register">
                    <span class="label">Sign Up</span>
                </a>
                <span class="divider">&bull;</span>
                <a class="btn btn--text btn--login" class="user" data-identity="login">
                    <span class="label">Log In</span>
                </a>
            </div>
        </div>

        <button class="btn btn--transparent btn--search" id="site-search-button">
            <i class="icon icon--search"></i>
            <span class="screen-reader-text">Search MarketWatch</span>
        </button>

    </header>

    <div class="column column--full bulletins full-width">
        <div class="element element--bulletins">
        </div>
                <div class="bulletin__ad">
                            <div id="ad-bulletin" aria-hidden="true" class="ad      " data-name="Bulletin"  data-conditions="1"     data-site="marketwatch.com" data-zone="bulletin"
                        data-size="140x31" data-phone="0" data-portrait="" data-landscape="" data-desktop="" data-targeting="alert=volatility025,red;">

                        </div>
                            </div>
</div>
    <nav class="nav">
        <div class="nav__content">

          <div class="element element--ad">
            <div is="mw-ad">        <div id="ad-nav-sponsor" aria-hidden="true" class="ad      " data-name="Nav Sponsor"  data-conditions="1"     data-site="marketwatch.com" data-zone="nav_front"
        data-size="280x40" data-phone="" data-portrait="" data-landscape="" data-desktop="" data-targeting="alert=volatility025,red;">

        </div>
</div>
          </div>

          <ul class="list list--navigation">
            <li class="list__item " data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com">Home</a>
            </li>
            <li class="list__item " data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/latest-news">Latest News</a>
            </li>
            <li class="list__item " data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/watchlist">Watchlist</a>
            </li>
            <li class="list__item has-children" data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/markets">Markets</a>
              <i class="icon icon--caret-right"></i>
              <div class="subNav">
                <ul class="list list--subsections">
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/markets/us">U.S. Markets</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/markets/canada">Canada</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/markets/europe-middle-east">Europe &amp; Middle East</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/markets/asia">Asia</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/markets/emerging-markets">Emerging Markets</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/markets/latin-america">Latin America</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/marketsummary">Market Data</a>
                  </li>
                </ul>
              </div>
            </li>
            <li class="list__item has-children" data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/investing">Investing</a>
              <i class="icon icon--caret-right"></i>
              <div class="subNav">
                <ul class="list list--subsections">
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/barrons">Barron&#39;s</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/stocks">Stocks</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/ipo">IPOs</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/mutual-funds">Mutual Funds</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/etf">ETFs</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/optionscenter">Options</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/bonds">Bonds</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/commodities">Commodities</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/currencies">Currencies</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/cryptocurrency">Cryptocurrencies</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/futures">Futures</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/financial-adviser-center">Financial Adviser Center</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/column/cannabis-watch">Cannabis</a>
                  </li>
                </ul>
              </div>
            </li>
            <li class="list__item " data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/investing/barrons">Barron&#39;s</a>
            </li>
            <li class="list__item has-children" data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/economy-politics">Economy &amp; Politics</a>
              <i class="icon icon--caret-right"></i>
              <div class="subNav">
                <ul class="list list--subsections">
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/column/capitol-report">Capitol Report</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/column/trump-today">Trump Today</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/economy-politics/election-2020">Election 2020</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/column/the-fed">The Federal Reserve</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/column/economic-report">Economic Report</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/author/rex-nutting">Rex Nutting</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/economy-politics/brexit">Brexit</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/economy-politics/calendars/economic">U.S. Economic Calendar</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/story/should-i-itemize-or-take-the-standard-tax-deduction-a-calculator-to-help-decide-2019-02-12">Tax Withholding Calculator</a>
                  </li>
                </ul>
              </div>
            </li>
            <li class="list__item has-children" data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/personal-finance">Personal Finance</a>
              <i class="icon icon--caret-right"></i>
              <div class="subNav">
                <ul class="list list--subsections">
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/column/the-moneyist">The Moneyist</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/personal-finance/spending-saving">Spending &amp; Saving</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/retirement">Retirement</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/personal-finance/taxes">Taxes</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/personal-finance/credit-cards">Credit Cards</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/personal-finance/careers">Careers</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/personal-finance/travel">Travel</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/real-estate">Real Estate</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/personal-finance/family-finance">Family Finance</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/column/love-and-money">Love &amp; Money</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/personal-finance/moneyish">Moneyish</a>
                  </li>
                </ul>
              </div>
            </li>
            <li class="list__item has-children" data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/retirement">Retirement</a>
              <i class="icon icon--caret-right"></i>
              <div class="subNav">
                <ul class="list list--subsections">
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/retirement/best-new-ideas-in-retirement">Best New Ideas in Retirement</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/retirement/estate-planning">Estate Planning</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/retirement/fire">FIRE</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/retirement/taxes">Taxes</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/retirement/social-security">Social Security</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/retirement/real-estate">Real Estate</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/calculator/retirement/retirement-planning-calculator">Retirement Planner</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/graphics/best-place-to-retire/">Where Should I Retire?</a>
                  </li>
                </ul>
              </div>
            </li>
            <li class="list__item " data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/game">Virtual Stock Exchange</a>
            </li>
            <li class="list__item has-children" data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/video">Video</a>
              <i class="icon icon--caret-right"></i>
              <div class="subNav">
                <ul class="list list--subsections">
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/video/sectorwatch">SectorWatch</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/video/the-moneyist">The Moneyist</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/video/getting-to-work-with">Getting to Work With</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/video/love-money">Love &amp; Money</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/video/explainomics">Explainomics</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/video/good-company">Good Company</a>
                  </li>
                </ul>
              </div>
            </li>
            <li class="list__item " data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/newsroom/opinion">Opinion</a>
            </li>
            <li class="list__item " data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/newsletters">Newsletter Center</a>
            </li>
            <li class="list__item has-children" data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/premium-newsletters">Premium Newsletters</a>
              <i class="icon icon--caret-right"></i>
              <div class="subNav">
                <ul class="list list--subsections">
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/premium-newsletters/archive/retirement-weekly">Retirement Weekly</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/premium-newsletters/archive/technical-indicator">The Technical Indicator</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/premium-newsletters/archive/revolution-investing">Revolution Investing</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/premium-newsletters/archive/marketwatch-options-trader">Options Trader</a>
                  </li>
                </ul>
              </div>
            </li>
            <li class="list__item has-children" data-click-through="side_nav">
              <a class="link " href="https://www.marketwatch.com/investing/research-tools">Research &amp; Tools</a>
              <i class="icon icon--caret-right"></i>
              <div class="subNav">
                <ul class="list list--subsections">
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/watchlist">Watchlist</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/stockresearch/screener/">Stock Screener</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/earningscalendar">Earnings Calendar</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/screener">Market Screener</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/ipo-calendar">IPO Calendar</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/stockresearch/screener/premarket">Premarket Screener</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/optionscenter/calendar">Options Calendar</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/screener/after-hours">After Hours Screener</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/investing/currencies/tools">Currency Tools</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/mutual-fund/screener">Mutual Fund Screener</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/stockresearch/updown/">Upgrades &amp; Downgrades</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/mutual-fund/compare">Mutual Fund Comparison</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/partner/certificate-deposit">CDs</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/partner/savings-accounts">Savings Accounts</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/tools/partner/mortgage-rates">Mortgage Rates</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/graphics/best-place-to-retire/">Where Should I Retire?</a>
                  </li>
                  <li class="list__item">
                    <a class="link" href="https://www.marketwatch.com/calculator/retirement/retirement-planning-calculator">Retirement Planner</a>
                  </li>
                </ul>
              </div>
            </li>
            </ul>

            <div class="group group--buttons cover">
                <a class="btn btn--transparent" href="" data-identity="register"><span class="label">Sign Up</span></a>
                <a class="btn btn--primary" href="" data-identity="login"><span class="label">Log In</span></a>
            </div>

            <ul class="list list--profile">
                <li class="list__item" data-click-through="side_nav"><a class="link" href="//www.marketwatch.com/my">Profile Settings</a></li>
                <li class="list__item" data-click-through="side_nav"><a class="link" href="//www.marketwatch.com/watchlist">Watchlist</a></li>
                <li class="list__item" data-click-through="side_nav"><a class="link" href="//www.marketwatch.com/tools/alerts/myalertsummary.asp">Email &amp; Alerts</a></li>
                <li class="list__item" data-click-through="side_nav"><a class="link" href="//www.marketwatch.com/game">Games</a></li>

            </ul>
        </div>
    </nav>
</div>

<div id="share-tools-fixed">
    <div id="share-tools-content"></div>
</div>
        <div class="container--advertisement full-width" aria-hidden="true">
                    <div id="ad-banner" aria-hidden="true" class="ad      " data-name="Banner"  data-conditions="0"     data-site="marketwatch.com" data-zone="economy_ecorpt"
                    data-size="728x90,970x66,970x90,970x250" data-phone="" data-portrait="" data-landscape="" data-desktop="" data-targeting="alert=volatility025,red;">

                    </div>
                    </div>
</section>
<div id="non-chrome">
  <div id="content-cutout">

    <div id="newWatchlistBanner" class="element element--message">
        <i class="btn btn--icon j-close" title="Click to hide this message">&times;</i>
        <div class="message__text">
            <h2 class="primary">A New Watchlist</h2>
            <small class="secondary">
                <span class="text">We&apos;ve updated Watchlist! The changes include a new, responsive design featuring extended-hours data and more news. <a class="link" href="https://www.marketwatch.com/graphics/watchlist/" target="_blank">Learn More</a></span>
            </small>
        </div>
    </div>
    <script type="text/javascript">
        (function () {
            var divBanner, btnClose;

            function fnCloseClick(e) {
                e.preventDefault();
                var expireDate = new Date(Date.now() + (30 * 24 * 60 * 60 * 1000)).toUTCString(); // Expire in 30 days
                document.cookie = 'hideNewWatchlistBanner=true;domain=.marketwatch.com;path=/;expires=' + expireDate;

                if (btnClose) {
                    btnClose.removeEventListener('click', fnCloseClick);
                }

                if (divBanner) {
                    divBanner.parentNode.removeChild(divBanner);
                }
            }

            divBanner = document.getElementById("newWatchlistBanner");
            if (divBanner) {
                btnClose = divBanner.querySelector('i.j-close');
                if (btnClose) {
                    btnClose.addEventListener('click', fnCloseClick);
                }
            }
        })();
    </script>
  </div>

  <main id="main-hole" role="main">
    <div class="lame-content-wrapper">

      <div id="above">
        <div class="breadcrumb-container">
        <ol vocab="http://schema.org/" typeof="BreadcrumbList" class="nav--breadcrumb ">
          <li property="itemListElement" typeof="ListItem" class="fa fa-angle-right breadcrumb_item">
            <a property="item" typeof="WebPage" href="//www.marketwatch.com/">
              <span property="name">Home</span>
            </a>
            <meta property="position" content="1">
          </li>
              <li property="itemListElement" typeof="ListItem" class="fa fa-angle-right breadcrumb_item">
                  <h2>
                    <a property="item" typeof="WebPage" href="//www.marketwatch.com/economy-politics">
                      <span property="name">Economy &amp; Politics</span>
                    </a>
                  </h2>
        <meta property="position" content="1">
              </li>
              <li property="itemListElement" typeof="ListItem" class="fa fa-angle-right breadcrumb_item is_column">
                <h2>
                  <a property="item" typeof="WebPage" href="//www.marketwatch.com/topics/columns/economic-report">
                    <span property="name">Economic Report</span>
                  </a>
                </h2>
              </li>
</ol>
            <a id="column-alerts" href="//www.marketwatch.com/tools/alerts/newsColumn.asp?selectedType=3&amp;chkProduct2=0&amp;Column=Economic%20Report">Get email alerts</a>
        </div>

  <div class="article-headline-wrapper">
    <h1 id="article-headline" itemprop="headline">
         Home prices are still on fire, Case-Shiller data show
    </h1>
  </div>
      </div>

      <div id="brass-rail">
        <div id="ad-display-ad" aria-hidden="true" class="ad module  sticky inactive  " data-name="Display Ad"  data-conditions="2"  data-sticky-lower-bound-id="brass-rail" data-scroll-padding="500" data-refresh="20000" data-refresh-once="true" data-site="marketwatch.com" data-zone="economy_ecorpt"
        data-size="300x250,300x600,300x1050" data-phone="" data-portrait="300x250" data-landscape="" data-desktop="" data-targeting="alert=volatility025,red;">

        </div>
      </div>

      <div id="topper">
<div id="author-bylines" class="byline">
    By

        <a rel="author" href="https://www.marketwatch.com/topics/journalists/andrea-riquier">Andrea Riquier</a>
</div>

    <p id="published-timestamp" class="timestamp">Published: <span>Mar 27, 2018 9:00 a.m. ET</span></p>

<div id="share-bar" class="shareable" data-share-modprefix="mw_share_" data-share-text="Home prices are still on fire, Case-Shiller data show" data-share-url="https://www.marketwatch.com/story/home-prices-are-still-on-fire-case-shiller-data-show-2018-03-27">
    <div class="total-shares">Share</div>
    <div class="share-icons">
        <div class="share-buttons-wrapper">
            <button class="social-button facebook trackable" data-track-click="share_storytools_facebook">
                <span class="icon"><svg focusable="false" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 330.3 330.3" enable-background="new 0 0 330.3 330.3" xml:space="preserve" role="img" aria-labelledby="icon-facebook">
	 <title id="icon-facebook">facebook icon</title>
<path d="M0,0v330.3h330.3V0H0z M284.8,72.1h-30.2c-10.6,0-14.4,6-14.4,14.4v28.7h44.6l-5.3,50.6h-39.3V307h-59.7V165.7h-30.2v-50.6
	h30.2V86.5c0-34,11.3-61.2,59.7-62.7h44.6V72.1z"/>
</svg>
</span>
                <span class="count"></span>
            </button>
            <button class="social-button twitter trackable" data-track-click="share_storytools_twitter">
                <span class="icon"><svg focusable="false" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 273.4 222.2" enable-background="new 0 0 273.4 222.2" xml:space="preserve" role="img" aria-labelledby="icon-twitter">
	 <title id="icon-twitter">Twitter icon</title>
<path fill="#FFFFFF" d="M273.4,26.3c-10.1,4.5-20.9,7.5-32.2,8.8c11.6-6.9,20.5-17.9,24.7-31C255,10.5,243,15.2,230.2,17.7
	C220,6.8,205.4,0,189.3,0c-31,0-56.1,25.1-56.1,56.1c0,4.4,0.5,8.7,1.5,12.8C88,66.5,46.7,44.2,19,10.3c-4.8,8.3-7.6,17.9-7.6,28.2
	c0,19.5,9.9,36.6,25,46.7c-9.2-0.3-17.8-2.8-25.4-7c0,0.2,0,0.5,0,0.7c0,27.2,19.3,49.8,45,55c-4.7,1.3-9.7,2-14.8,2
	c-3.6,0-7.1-0.4-10.6-1c7.1,22.3,27.9,38.5,52.4,39c-19.2,15-43.4,24-69.7,24c-4.5,0-9-0.3-13.4-0.8c24.8,15.9,54.3,25.2,86,25.2
	c103.2,0,159.6-85.5,159.6-159.6c0-2.4-0.1-4.9-0.2-7.3C256.4,47.4,265.9,37.5,273.4,26.3z"/>
</svg>
</span>
                <span class="count"></span>
            </button>
            <button class="social-button linkedin trackable" data-track-click="share_storytools_linkedin">
                <span class="icon"><svg focusable="false" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 331.6 333.7" enable-background="new 0 0 331.6 333.7" xml:space="preserve" role="img" aria-labelledby="icon-linkedin">
	 <title id="icon-linkedin">Linkedin icon</title>
<path d="M178.3,150.5V150c-0.1,0.2-0.2,0.3-0.3,0.5H178.3z M307.1,0H24.5C11,0,0,10.7,0,23.9v285.9c0,13.2,11,23.9,24.5,23.9h282.6
	c13.5,0,24.5-10.7,24.5-23.9V23.9C331.6,10.7,320.6,0,307.1,0z M100.5,279.3H50.4V128.7h50.1V279.3z M75.5,108.1h-0.3
	c-16.8,0-27.7-11.6-27.7-26c0-14.8,11.2-26,28.3-26c17.1,0,27.7,11.3,28,26C103.8,96.5,92.9,108.1,75.5,108.1z M281.1,279.3H231
	v-80.6c0-20.2-7.2-34.1-25.4-34.1c-13.8,0-22.1,9.3-25.7,18.3c-1.3,3.2-1.7,7.7-1.7,12.2v84.1h-50.1c0,0,0.7-136.5,0-150.7h50.1V150
	c6.6-10.3,18.5-24.9,45.1-24.9c33,0,57.7,21.5,57.7,67.8V279.3z"/>
</svg>
</span>
                <span class="count"></span>
            </button>
            <button class="social-button flipboard trackable" data-track-click="share_storytools_flipboard">
                <span class="icon"><svg focusable="false" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="-824 416 250 250" style="enable-background:new -824 416 250 250;" xml:space="preserve" role="img" aria-labelledby="icon-flipboard">
	 <title id="icon-flipboard">Flipboard icon</title>
<style type="text/css">
	.st0{fill:transparent;}
	.st1{fill:#FFFFFF;}
	.st2{fill:transparent;enable-background:new    ;}
	.st3{fill:transparent;enable-background:new    ;}
</style>
<rect x="-824" y="416" class="st0" width="250" height="250"/>
<g>
	<path class="st1" d="M-824,416v250h250V416H-824z M-624,516h-50v50h-50v50h-50v-50.5v-50V466h50.5h50h49.5V516z"/>
	<polygon class="st2" points="-673.5,466 -724,466 -724,516 -673.5,516 -624,516 -624,466 	"/>
	<rect x="-724" y="516" class="st3" width="50" height="50"/>
</g>
</svg>
</span>
            </button>
            <div class="social-button email trackable">
                <a class="shareicon" href="/story/home-prices-are-still-on-fire-case-shiller-data-show-2018-03-27/email" title="Email this story">
                    <span class="icon"><svg focusable="false" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 26.296 16.507" enable-background="new 0 0 26.296 16.507" xml:space="preserve" role="img" aria-labelledby="icon-email">
	 <title id="icon-email">Email icon</title>
<path fill="#FFFFFF" d="M26.102,0H0.335L13.15,10.961L26.102,0z M13.145,12.941L0,1.697v14.81h26.296V1.81L13.145,12.941z"/>
</svg>
</span>
                </a>
            </div>
        </div>
    </div>
        <div class="comment-icons">
            <button class="social-button comment trackable">
                <span class="icon"><svg focusable="false" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="16.87px" height="16.94px" viewBox="0 0 16.87 16.94" enable-background="new 0 0 16.87 16.94" xml:space="preserve" role="img" aria-labelledby="icon-comment">
	 <title id="icon-comment">Comment icon</title>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M16.87,1.18v10.63c0,0.66-0.529,1.19-1.18,1.19H7.88L3.17,16.94
	L3.82,13H1.18C0.53,13,0,12.47,0,11.81V1.18C0,0.53,0.53,0,1.18,0h14.51C16.34,0,16.87,0.53,16.87,1.18z"/>
</svg>
</span>
                <span class="count spot-im-replies-count" data-post-id="0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD"></span>
            </button>
        </div>
</div>

<div id="article-tools">
    <button class="tool text-resize">
        <svg focusable="false" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
        	 viewBox="0 0 34.969 20.191" enable-background="new 0 0 34.969 20.191" xml:space="preserve" role="img" aria-labelledby="text-resize">
        <title id="text-resize">Text Resize</title>
        <g>
        	<g>
        		<path fill="#CED5D4" d="M6.338,0L0,19.919h5.767l0.983-3.719h6.311l0.956,3.719h5.74L13.34,0H6.338z M7.839,11.805
        			C8.645,8.693,9.165,6.608,9.4,5.549C9.635,4.491,9.792,3.731,9.872,3.27c0.088,0.498,0.272,1.321,0.551,2.47
        			c0.279,1.148,0.517,2.085,0.711,2.809l0.837,3.257H7.839z M33.381,5.74c-1.059-0.977-2.553-1.466-4.484-1.466
        			c-2.675,0-4.889,0.461-6.643,1.384l1.502,3.501c1.691-0.76,3.086-1.14,4.185-1.14c1.223,0,1.833,0.633,1.833,1.9v0.217
        			l-2.511,0.082c-2.117,0.1-3.733,0.549-4.849,1.351c-1.116,0.801-1.675,2.02-1.675,3.656c0,1.574,0.407,2.795,1.223,3.664
        			c0.814,0.868,1.931,1.303,3.348,1.303c1.151,0,2.091-0.163,2.817-0.488c0.726-0.326,1.438-0.932,2.139-1.818h0.106l0.996,2.035
        			h3.601V9.837C34.969,8.083,34.439,6.716,33.381,5.74z M29.801,14.248c0,0.651-0.225,1.18-0.671,1.588
        			c-0.448,0.406-0.985,0.609-1.614,0.609c-0.983,0-1.475-0.469-1.475-1.41c0-1.222,0.854-1.863,2.563-1.928l1.196-0.054V14.248z"/>
        	</g>
        </g>
        </svg>
    </button>
    <a href="/story/home-prices-are-still-on-fire-case-shiller-data-show-2018-03-27/print" class="tool print">
        <svg focusable="false" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
        	 viewBox="0 0 26.311 25.725" enable-background="new 0 0 26.311 25.725" xml:space="preserve" role="img" aria-labelledby="icon-print">
        	 <title id="icon-print">Print icon</title>
        <path fill="#D2D2D2" d="M20.545,0H5.766v4.243h14.779V0z M25.029,5.772H1.281C0.574,5.772,0,6.346,0,7.053v9.424h3.859v-5.721
        	h18.592v5.721h3.859V7.053C26.311,6.346,25.738,5.772,25.029,5.772z M23.529,8.913c-0.566,0-1.025-0.459-1.025-1.025
        	s0.459-1.024,1.025-1.024c0.564,0,1.023,0.458,1.023,1.024S24.094,8.913,23.529,8.913z M19.453,24.217h-6.186
        	c-2.24,0-1.16-5.31-1.16-5.31s-5.18,1.258-5.246-1.116v-4.875H5.354v6.867l0.441,0.442l5.5,5.5h9.666V12.916h-1.508V24.217z"/>
        </svg>
    </a>
</div>

    <h2 id="article-subhead" itemprop="alternativeHeadline">


<p>After a lull, San Francisco is back to being one of the top three hottest markets</p>
    </h2>

      </div>

      <div id="content-hole">

    <script type="text/javascript">
      window.videoDomain = 'https://video-api.wsj.com';
    </script>


    <article id="article" class="with-hero " itemscope itemtype="http://schema.org/NewsArticle" itemref="article-headline article-subhead">
        <meta id="article-section" itemprop="articleSection" content="">
        <meta id="thumbnail-url" itemprop="thumbnailUrl" content="">
            <meta id="date-created" itemprop="dateCreated" content="Mar 27, 2018 9:00 a.m. ET">
            <meta id="date-published" itemprop="datePublished" content="Mar 27, 2018 9:00 a.m. ET">

                <figure class="hero-figure has-caption">
                <div class="hero-image-wrap">
                    <img class="article-image ZH" alt="" src="https://ei.marketwatch.com/Multimedia/2018/03/23/Photos/ZH/MW-GG178_realty_20180323163027_ZH.jpg?uuid=0597cc9a-2ed9-11e8-a272-ac162d7bc1f7" />
                    <cite>Bloomberg News/Landov</cite>
                </div>
                    <figcaption>A home for sale in Seattle, Wash., one of the nation’s hottest housing markets. </figcaption>
                </figure>

        <div id="article-meat">
            <div id="article-left-rail" class="left-rail">
                <div id="author-dreds" class="first-author-has-dred">
                        <div class="author-dred">
                                        <a class="dred" href="https://www.marketwatch.com/topics/journalists/andrea-riquier">
                                    <img class="author-image" alt="Author photo" src="https://i.mktw.net/_newsimages/2014_dreds/andreariquiernew_100.png">
                                        </a>
                                    <p>By</p>
                                    <a rel="author" title="Andrea Riquier" class="author-link" href="https://www.marketwatch.com/topics/journalists/andrea-riquier">
                                <h3 class="module-header">
                                        Andrea<b>Riquier</b>
                                </h3>
                                    </a>

                                <div class="social">
                                        <a class="social-link twitter fa fa-twitter" href="http://twitter.com/ARiquier" target="_blank"></a>
                                        <a class="social-link email fa fa-envelope" href="mailto:[email protected]"></a>
                                </div>
                        </div>
                </div>
            </div>

            <div id="article-body" itemprop="articleBody">









                                                               <p> <strong>The numbers:</strong> The S&amp;P/Case-Shiller national index rose a seasonally adjusted 0.5% in the three-month period ending in January, and was up 6.2% compared to a year before. The 20-city index rose a seasonally adjusted 0.8% for the month, and 6.4% for the year.</p> <p> <strong>What happened: </strong>Prices are still on fire. And the West is still the best: Seattle, Las Vegas and San Francisco all notched double-digit yearly price gains. Only one city, Washington, D.C., had a negative monthly reading. </p> <p>As David Blitzer, chairman of the index committee at S&amp;P Dow Jones Indices, noted in a release, the price gains are all about demand and lack of supply. </p> <p>“The current months-supply — how many months at the current sales rate would be needed to absorb homes currently for sale — is 3.4; the average since 2000 is 6.0 months, and the high in July 2010 was 11.9,” Blitzer wrote. “Currently, the homeowner vacancy rate is 1.6% compared to an average of 2.1% since 2000; it peaked in 2010 at 2.7%. Despite limited supplies, rising prices and higher mortgage rates, affordability is not a concern.”</p> <p>Relatively affordable housing is cold comfort to many would-be home buyers who simply can’t find anything to buy. </p> <p> <strong>Read:</strong> <a href="/story/two-thirds-of-house-hunters-have-been-searching-for-3-months-or-more-2018-02-22" class="icon none" >Most house hunters have been searching for 3 months or more</a> </p> <p> <strong>Big picture:</strong> Economists had forecast a 0.7% monthly increase, and a 6.2% 12-month increase, for the 20-city index. <a href="/story/why-its-so-hard-to-forecast-home-prices-for-2018-and-why-that-should-worry-you-2017-12-19" class="icon none" >As MarketWatch has reported</a>, most housing analysts have argued that the ongoing price gains in housing can’t last — and yet they have so far. </p> <table> <tbody> <tr class="data"> <td id="" align="left" valign="top" colspan=""> <strong>Metro</strong> </td> <td id="" align="left" valign="top" colspan=""> <strong>Monthly change</strong> </td> <td id="" align="left" valign="top" colspan=""> <strong>12-month change</strong> </td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">Atlanta</td> <td id="" align="left" valign="top" colspan="">0.7%</td> <td id="" align="left" valign="top" colspan="">6.5%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">Boston</td> <td id="" align="left" valign="top" colspan="">0.2%</td> <td id="" align="left" valign="top" colspan="">5.3%</td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">Charlotte</td> <td id="" align="left" valign="top" colspan="">0.4%</td> <td id="" align="left" valign="top" colspan="">6.0%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">Chicago</td> <td id="" align="left" valign="top" colspan="">0.0%</td> <td id="" align="left" valign="top" colspan="">2.4%</td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">Cleveland</td> <td id="" align="left" valign="top" colspan="">0.0%</td> <td id="" align="left" valign="top" colspan="">3.5%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">Dallas</td> <td id="" align="left" valign="top" colspan="">0.2%</td> <td id="" align="left" valign="top" colspan="">6.9%</td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">Denver</td> <td id="" align="left" valign="top" colspan="">0.7%</td> <td id="" align="left" valign="top" colspan="">7.6%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">Detroit</td> <td id="" align="left" valign="top" colspan="">0.1%</td> <td id="" align="left" valign="top" colspan="">7.6%</td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">Las Vegas</td> <td id="" align="left" valign="top" colspan="">0.6%</td> <td id="" align="left" valign="top" colspan="">11.1%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">Los Angeles</td> <td id="" align="left" valign="top" colspan="">0.6%</td> <td id="" align="left" valign="top" colspan="">7.6%</td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">Miami</td> <td id="" align="left" valign="top" colspan="">0.6%</td> <td id="" align="left" valign="top" colspan="">4.0%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">Minneapolis</td> <td id="" align="left" valign="top" colspan="">0.1%</td> <td id="" align="left" valign="top" colspan="">5.9%</td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">New York</td> <td id="" align="left" valign="top" colspan="">0.0%</td> <td id="" align="left" valign="top" colspan="">5.2%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">Phoenix</td> <td id="" align="left" valign="top" colspan="">0.3%</td> <td id="" align="left" valign="top" colspan="">5.9%</td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">Portland</td> <td id="" align="left" valign="top" colspan="">0.4%</td> <td id="" align="left" valign="top" colspan="">7.1%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">San Diego</td> <td id="" align="left" valign="top" colspan="">0.8%</td> <td id="" align="left" valign="top" colspan="">7.4%</td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">San Francisco</td> <td id="" align="left" valign="top" colspan="">0.4%</td> <td id="" align="left" valign="top" colspan="">10.2%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">Seattle</td> <td id="" align="left" valign="top" colspan="">0.7%</td> <td id="" align="left" valign="top" colspan="">12.9%</td> </tr> <tr class="data even"> <td id="" align="left" valign="top" colspan="">Tampa</td> <td id="" align="left" valign="top" colspan="">0.4%</td> <td id="" align="left" valign="top" colspan="">6.7%</td> </tr> <tr class="data"> <td id="" align="left" valign="top" colspan="">Washington</td> <td id="" align="left" valign="top" colspan="">-0.4%</td> <td id="" align="left" valign="top" colspan="">2.4%</td> </tr> </tbody> </table> <p>Read: <a href="/story/mortgage-rates-edge-up-even-as-trade-war-worries-loom-ahead-2018-03-22" class="icon none" >Mortgage rates edge up even as trade war worries loom ahead</a></p>




























                            <div id="ad-nativo" aria-hidden="true" class="ad      with-hero " data-name="Nativo"  data-conditions="0"     data-site="marketwatch.com" data-zone="economy_ecorpt"
                            data-size="1x2,fluid" data-phone="" data-portrait="" data-landscape="" data-desktop="" data-targeting="ntvPlacement=1072763;alert=volatility025,red;">

                            </div>
                                    <div id="author-commentPromo">

                    <div id="author-bios" class="">
                                <div class="module author-bio with-image ">
                                    <div class="stuff">
                                            <img class="author-image" src="https://i.mktw.net/_newsimages/2014_dreds/andreariquiernew_480.png" alt="">
                        <div class="byline">
                                                <h3 class="module-header">
                                                    Andrea
                                                    <b>Riquier</b>
                                                </h3>
                                <div class="social">
                                                        <a class="social-link twitter fa fa-twitter" href="http://twitter.com/ARiquier" target="_blank"></a>
                                        <a class="social-link email fa fa-envelope" href="mailto:[email protected]"></a>
                                </div>
                        </div>
                                    </div>
                                        <p class="bio">
                                            Andrea Riquier reports on housing and banking from MarketWatch's New York newsroom. Follow her on Twitter @ARiquier.
                                        </p>
                </div>
    </div>

                  <div class="module  defaultPromo" id="comment-promo">
                        <h3 class="module-header">
                            We Want to
                            <b>Hear from You</b>
                        </h3>
                        <div>
                                <p>Join the conversation</p>
            <button id="join-conversation" type="button">Comment</button>
                        </div>
                    </div>


                </div>
                				<div id="myfinance-eoc">
				</div>

                    <div class="related_topics">
                        <h4>Related Topics</h4>
                        <ul class="article__topics">
                                <li class="topic__item"><h3><a href="/topics/subjects/u-s-economy">U.S. Economy</a></h3></li>
                                <li class="topic__item"><h3><a href="/topics/subjects/federal-reserve">Federal Reserve</a></h3></li>
                                <li class="topic__item"><h3><a href="/economic-indicators-housing">Housing Indicators</a></h3></li>
                                <li class="topic__item"><h3><a href="/economic-indicators-jobs">Employment</a></h3></li>
                                <li class="topic__item"><h3><a href="/economic-indicators-inflation">Inflation</a></h3></li>
                        </ul>
                    </div>


            </div>
        </div>
    </article>



      </div>

      <div id="right-rail">
<div id="trading-center" class="module">
    <h3 class="module-header">MarketWatch <b>Partner Center</b></h3>
    <ul class="list list--broker" aria-hidden="true">
    <li class="broker__item" aria-hidden="true">
                <div id="ad-broker-button-1" aria-hidden="true" class="ad      " data-name="Broker Button 1"  data-conditions="1"    data-refresh="420000" data-refresh-once="false" data-site="brokerbuttons.marketwatch.com" data-zone="economy_ecorpt"
                data-size="120x60" data-phone="" data-portrait="" data-landscape="" data-desktop="" data-targeting="pos=1;tile=10;alert=volatility025,red;">

                </div>
            </li>
    <li class="broker__item" aria-hidden="true">
                <div id="ad-broker-button-2" aria-hidden="true" class="ad      " data-name="Broker Button 2"  data-conditions="0"    data-refresh="420000" data-refresh-once="false" data-site="brokerbuttons.marketwatch.com" data-zone="economy_ecorpt"
                data-size="120x60" data-phone="" data-portrait="" data-landscape="" data-desktop="" data-targeting="pos=2;tile=11;alert=volatility025,red;">

                </div>
            </li>
    <li class="broker__item" aria-hidden="true">
                <div id="ad-broker-button-3" aria-hidden="true" class="ad      " data-name="Broker Button 3"  data-conditions="1"    data-refresh="420000" data-refresh-once="false" data-site="brokerbuttons.marketwatch.com" data-zone="economy_ecorpt"
                data-size="120x60" data-phone="" data-portrait="" data-landscape="" data-desktop="" data-targeting="pos=3;tile=12;alert=volatility025,red;">

                </div>
            </li>
    <li class="broker__item" aria-hidden="true">
                <div id="ad-broker-button-4" aria-hidden="true" class="ad      " data-name="Broker Button 4"  data-conditions="1"    data-refresh="420000" data-refresh-once="false" data-site="brokerbuttons.marketwatch.com" data-zone="economy_ecorpt"
                data-size="120x60" data-phone="" data-portrait="" data-landscape="" data-desktop="" data-targeting="pos=4;tile=13;alert=volatility025,red;">

                </div>
            </li>
  </ul>
</div>
<div id="moreNews" class="module">
    <h3 class="module-header">Most Popular</h3>
    <ul class="topStories">
      <li>
        <div class="thumbnail ">
          <img src="https://s.marketwatch.com/public/resources/MWimages/MW-HN272_succes_MC_20190712162155.jpg" alt="">
        </div>
        <a href="/story/beware-the-irs-is-eyeing-your-inherited-money-2019-07-15?mod=MW_story_top_stories">Beware, the IRS is eyeing your inherited money</a>
      </li>
      <li>
        <div class="thumbnail ">
          <img src="https://s.marketwatch.com/public/resources/MWimages/MW-FS002_wr_mem_MC_20170809145549.jpg" alt="">
        </div>
        <a href="/story/a-major-new-study-suggests-its-possible-to-avoid-dementia-here-are-5-ways-to-reduce-your-risks-2019-07-15?mod=MW_story_top_stories">A major new study suggests it’s possible to avoid developing dementia — 5 ways to reduce your risk</a>
      </li>
      <li>
        <div class="thumbnail ">
          <img src="https://s.marketwatch.com/public/resources/MWimages/MW-GC652_moneyi_MC_20180129161027.jpg" alt="">
        </div>
        <a href="/story/im-65-my-mortgage-is-paid-off-and-i-have-370000-in-savings-so-why-i-am-still-worried-about-money-2019-03-08?mod=MW_story_top_stories">I’m 65, my mortgage is paid off and I have $370,000 in savings, so why I am still worried about money?</a>
      </li>
      <li>
        <div class="thumbnail ">
          <img src="https://s.marketwatch.com/public/resources/MWimages/MW-GZ053_amazon_MC_20181126105237.jpg" alt="">
        </div>
        <a href="/story/this-is-the-no-1-thing-to-buy-on-amazon-prime-day-2019-07-15?mod=MW_story_top_stories">This is the No. 1 thing to buy on Amazon Prime Day</a>
      </li>
      <li>
        <div class="thumbnail ">
          <img src="https://s.marketwatch.com/public/resources/MWimages/MW-HH819_401k_MC_20190417155010.jpg" alt="">
        </div>
        <a href="/story/this-401k-move-before-you-retire-guarantees-monthly-income-in-old-age-2019-07-15?mod=MW_story_top_stories">401(k) retirees won’t buy annuities unless they are better designed</a>
      </li>
    </ul>
</div>
        <div id="ad-bottom-display-ad" aria-hidden="true" class="ad module in-view sticky   " data-name="Bottom Display Ad"  data-conditions="4"  data-sticky-lower-bound-id="main-hole"   data-site="bottom.marketwatch.com" data-zone="economy_ecorpt"
        data-size="300x250,300x600" data-phone="" data-portrait="" data-landscape="" data-desktop="" data-targeting="alert=volatility025,red;">

        </div>
    <script type="text/javascript">
        $(function () {
            if (typeof dianomiUnitCallback !== 'undefined') {
                var dianomiCallback = new dianomiUnitCallback('articlerightrail', 2583, 'dianomiRightRail', '', '');
                dianomiCallback.initialize('dianomiRightRail');
            }
        });
    </script>
    <div id="dianomiRightRail" aria-hidden="true" class="dianomi-widget-dianomiRightRail sticky" data-sticky-lower-bound-id="main-hole"></div>

        <script type="text/javascript">
            $(function() {
                if (window.MutationObserver) {  // arrive breaks if MutationObserver not supported by browser
                    $("#dianomiRightRail").arrive(".dianomiContent", function () {
                        $("#dianomiRightRail").unbindArrive();
                        $("#dianomiRightRail").trigger("rendered");
                    });
                }
                else {  // TODO ~ remove; listening to this event causes performance problems
                    $("#dianomiRightRail").on('DOMNodeInserted', function () {
                        $("#dianomiRightRail").off('DOMNodeInserted');
                        $("#dianomiRightRail").trigger('rendered');
                    });
                }
            });
        </script>
      </div>

      <div id="little-hole">

        <div id="sponsored-links">
            <script id="mNCC" language="javascript">
                (function () {
                    var isSSL = 'https:' == document.location.protocol;
                    window.nativeAdsContext = {
                        appId: "CFEAB5E0AC88686BA597A26FB4B54555349E3478",
                        apikey: "ARAPgnyc0MRHNRr40%2b9oSrfSwlZG5%2bAfMeBkG2%2fh9AatBHngxiuMRHpQ%2bFJ%2fxfgc2iE%3d",
                        publisherId: "204461",
                        publisherName: "MarketWatch",
                        tracingtag: "mw-tracingtag",
                        msNativeAdsScriptLoc: "//h6.msn.com/nativeads/ms-nativeads.min.js",
                        pageCategory: "money",
                        pageType: "articles",
                        bingTrafficPercent: "100"
                    };
                    window.bingNACallBackToLoadOtherScript = function() {
                        window.medianet_width = "600";
                        window.medianet_height = "250";
                        window.medianet_crid = "305312222";
                        window.medianet_versionId = "111299";

                        var mnSrc = (isSSL ? 'https:' : 'http:') + '//contextual.media.net/nmedianet.js?cid=8CU6CD37D' + (isSSL ? '&https=1' : '');
                        document.write('<scr' + 'ipt type="text/javascript" src="' + mnSrc + '"></scr' + 'ipt>');
                    }
                    var date = new Date();
                    var concatDate = "?date=" + date.getFullYear() + "" + date.getMonth() + "" + date.getDate();
                    var bingNAJS = (isSSL ? 'https:' : 'http:') + window.nativeAdsContext.msNativeAdsScriptLoc + concatDate;
                    document.write('<scr' + 'ipt type="text/javascript" src="' + bingNAJS + '"></scr' + 'ipt>');
                })();
            </script>
        </div>
    <div id="spotim-comments" class="is-loading" aria-hidden="true">
        <div class="comment-links">
            <a class="link" href="/commenting-guidelines">Community Guidelines</a>
            <span class="divider">•</span>
            <a class="link" href="/commenting-faqs">FAQs</a>
        </div>
        <div class="spotim-wrapper">
            <script async src="https://launcher.spot.im/spot/sp_ekXntyLk"
            data-spotim-module="spotim-launcher"
            data-post-url="https://www.marketwatch.com/story/home-prices-are-still-on-fire-case-shiller-data-show-2018-03-27"
            data-post-id="0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD"
            data-livefyre-url="0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD"></script>
        </div>
    </div>
      </div>

    </div>
  </main>

</div>
<input type="hidden" id="VendorWidgetView" value="partials/vendor/_zergnet" />
    <div class="content-region region--vendor full-width">
        <div class="template template--full">
            <div id="vendor-widget">
                <div id="zergnet-widget-66066" aria-hidden="true"></div>

            </div>
        </div>
    </div>
<div id="moreHeadlines" aria-hidden="true">
    <script type="text/javascript">
        $(function () {
            if (typeof dianomiUnitCallback !== 'undefined') {
                var dianomiCallback = new dianomiUnitCallback('belowarticle', 2582, 'dianomiBelowArticle', 'dianomi__list', 'padding:10px');
                dianomiCallback.initialize('dianomiBelowArticle');
            }
        });
    </script>
    <div id="dianomiBelowArticle"></div>
</div>
<footer class="container container--footer footer">
    <button class="link link--top">BACK TO TOP</button>
    <div class="region region--full primary full-width">
        <div class="column column--full">
            <ul class="list list--footer">
                <li class="heading"><h4>MarketWatch</h4></li>
                <li class="list__item"><a class="link" href="/site-index">Site Index</a></li>
                <li class="list__item"><a class="link" href="/topics">Topics</a></li>
                <li class="list__item"><a class="link" href="/help">Help</a></li>
                <li class="list__item"><a class="link" href="/support/feedback.asp">Feedback</a></li>
                <li class="list__item"><a class="link" href="/newsroom/roster">Newsroom Roster</a></li>
                <li class="list__item"><a class="link" href="/video">Media Archive</a></li>
                <li class="list__item"><a class="link" href="/premium-newsletters?link=djmc_footer_multi">Premium Products</a></li>
                <li class="list__item"><a class="link" href="/mobile">Mobile</a></li>
            </ul>
            <ul class="list list--footer">
                <li class="heading"><h4>Company</h4></li>
                <li class="list__item"><a class="link" href="/companyinfo">Company Info</a></li>
                <li class="list__item"><a class="link" href="https://www.dowjones.com/code-conduct/" rel="nofollow">Code of Conduct</a></li>
                <li class="list__item"><a class="link" href="/topics/columns/corrections">Corrections</a></li>
                <li class="list__item"><a class="link" href="http://dowjonesonline.com/" rel="nofollow">Advertising Media Kit</a></li>
                <li class="list__item"><a class="link" href="http://www.wsjlocal.com/" rel="nofollow">Advertise Locally</a></li>
                <li class="list__item"><a class="link" href="http://www.djreprints.com/" rel="nofollow">Reprints &amp; Licensing</a></li>
                <li class="list__item"><a class="link" href="https://www.dowjones.com/cookies-policy/#cookies-advertising" target="_blank">Your Ad Choices</a></li>
                <li class="list__item" aria-hidden="true">&nbsp;</li>
            </ul>
            <ul class="list list--footer">
                <li class="heading"><h4>Dow Jones Network</h4></li>
                <li class="list__item"><a class="link" href="https://www.wsj.com/">WSJ.com</a></li>
                <li class="list__item"><a class="link" href="http://www.barrons.com">Barron's Online</a></li>
                <li class="list__item"><a class="link" href="http://www.bigcharts.com/">BigCharts</a></li>
                <li class="list__item"><a class="link" href="/game">Virtual Stock Exchange</a></li>
                <li class="list__item"><a class="link" href="https://www.fnlondon.com">Financial News London</a></li>
                <li class="list__item"><a class="link" href="http://guides.wsj.com/small-business/">WSJ.com Small Business</a></li>
                <li class="list__item"><a class="link" href="https://www.realtor.com/" target="_blank">realtor.com</a></li>
                <li class="list__item"><a class="link" href="https://www.mansionglobal.com/" target="_blank">Mansion Global</a></li>
            </ul>
            <div class="element element--image">
                <img class="image" src="https://sts3.wsj.net/bucket-a/foxtrot/public/images/backgrounds/mobile_devices.png" height="250" alt=""/>
            </div>
        </div>
    </div>
    <div class="region region--full secondary full-width">
        <div class="element element--text">
            <p class="copyright">Copyright &copy; 2019 MarketWatch, Inc.  All rights reserved.</p>
            <p class="text text--terms">
                By using this site you agree to the <a href="//www.marketwatch.com/support/disclaimer.asp">Terms of Service</a>,
                <a href="https://www.dowjones.com/privacy-policy/" target="_blank">Privacy Policy</a>, and
                <a href="https://www.dowjones.com/cookies-policy/" target="_blank">Cookie Policy</a>.
            </p>
        </div>
        <div class="element element--list">
            <ul class="list list--social">
                <li class="list__item"><a class="icon icon--facebook" href="https://www.facebook.com/marketwatch" rel="nofollow" target="_blank"><span class="screen-reader-text">Facebook</span></a></li>
                <li class="list__item"><a class="icon icon--twitter" href="https://twitter.com/marketwatch" rel="nofollow" target="_blank"><span class="screen-reader-text">Twitter</span></a></li>
                <li class="list__item"><a class="icon icon--linkedin" href="https://www.linkedin.com/company/marketwatch" rel="nofollow" target="_blank"><span class="screen-reader-text">Linkedin</span></a></li>
                <li class="list__item"><a class="icon icon--google" href="https://plus.google.com/+marketwatch" rel="nofollow" target="_blank"><span class="screen-reader-text">Google Plus</span></a></li>
                <li class="list__item app-badges">
                    <a class="app__link" href="https://itunes.apple.com/app/marketwatch/id336693422?ign-mpt=uo%3D6&amp;mt=8" target="_blank" rel="nofollow">
                        <img class=" lazyloaded" data-src="https://sts3.wsj.net/bucket-a/maggie/static/images/app-store.svg" alt="Download from the App Store" src="https://sts3.wsj.net/bucket-a/maggie/static/images/app-store.svg" alt="">
                    </a>
                    <a class="app__link" href="https://play.google.com/store/apps/details?id=com.marketwatch&amp;hl=en" target="_blank" rel="nofollow">
                        <img class=" lazyloaded" data-src="https://sts3.wsj.net/bucket-a/maggie/static/images/google-play.png" alt="Download from the Google Play Store" src="https://sts3.wsj.net/bucket-a/maggie/static/images/google-play.png" alt=-"">
                    </a>
                </li>
            </ul>
        </div>
        <small class="text text--legal">Intraday Data provided by <a class="factset" href="https://www.factset.com/" rel="nofollow" target="_blank">FACTSET</a> and subject to <a class="link" href="/investing/terms-of-use">terms of use</a>. Historical and current end-of-day data provided by <a class="factset" href="https://www.factset.com/" rel="nofollow" target="_blank">FACTSET</a>. All quotes are in local exchange time. Real-time last sale data for U.S. stock quotes reflect trades reported through Nasdaq only. Intraday data delayed at least 15 minutes or per exchange requirements.</small>
    </div>
	<!-- This is a placeholder for cxense widgets -->
	<div id="cx-scrim"></div>
	<div id="cx-notification"></div>
</footer>
<div class="lightbox lightbox--search">
    <div class="container search--container">
        <div class="row search--bar">
            <div class="col col--12">
                <button class="close"><svg focusable="false" version="1.2" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 792 612" overflow="scroll" xml:space="preserve"><polygon fill="#FFFFFF" points="396,320.927 104.927,612 90,600.805 384.805,306 90,14.927 104.927,0 396,294.805 690.805,0 702,14.927 410.927,306 702,600.805 690.805,612 "/></svg></button>
                <input class="search__input" type="text" placeholder="Enter a symbol or keyword">
                <i class="fa fa-search" alt="search"></i>
                <div class="search--advanced">
                    <a href="/search?q=">Advanced Search</a>
                    <span class="info">Submit entry for keyword results</span>
                </div>
            </div>
        </div>
            <div class="element element--ad">
                <div is="mw-ad">        <div id="ad-search-sponsor" aria-hidden="true" class="ad      " data-name="Search Sponsor"  data-conditions="1"     data-site="marketwatch.com" data-zone="sponsor_search"
        data-size="1x2,fluid" data-phone="" data-portrait="" data-landscape="" data-desktop="" data-targeting="adlocation=nativesearch;alert=volatility025,red;">

        </div>
</div>
            </div>

        <div class="row row--results search--results"></div>
    </div>

    <template id="sr-template">
        <div id="search-stocks" class="col col--7 search--section">
            <h3>Quotes</h3>
        </div>
        <div class="col col--5 search--editorial">
            <div id="search-columns" class="search--section">
                <h3>Columns</h3>
            </div>
            <div id="search-authors" class="search--section">
                <h3>Authors</h3>
            </div>
            <div id="search-topics" class="search--section">
                <h3>Topics</h3>
            </div>
        </div>
    </template>

    <template id="sr-result-count">
        <span class="results-count"></span>
    </template>

    <template id="sr-no-results">
        <div class="no-results">No results found</div>
    </template>

    <template id="sr-quote-result">
        <a class="quote-box" href="">
            <h4></h4>
            <div class="company"></div>
            <div class="quote">
                <span class="price"></span>
                <span class="net change"></span>
                <span class="percent change"></span>
            </div>
        </a>
    </template>

    <template id="sr-editorial-result">
        <div>
            <a href=""></a>
        </div>
    </template>

    <template id="sr-topic-result">
        <div class="result-type"></div>
        <div class="result-value">
            <a href=""></a>
        </div>
    </template>
</div>
<div id="media-swatch"></div>
<div id="general-overlay">

</div>
<script>
    var blueGrass2SilentTest = { enabled: false, endpoint: 'https://mw-silent.bgdev.dowjones.io/bg2' };
</script>
<script src='https://sts3.wsj.net/bucket-a/foxtrot/public/vendor.min-66e6eb83d3.js' type='text/javascript'></script>
<script src="https://sts3.wsj.net/bucket-a/foxtrot/public/vendorWidget.min-4bec12f10f.js" type="text/javascript"></script>
<script src='https://sts3.wsj.net/bucket-a/foxtrot/public/articletail.min-4af6997531.js' type='text/javascript'></script>

<div data-module-id="8" data-module-name="mw.svc.page.Partials" data-module-zone="partials" class="zonedModule">

<script data-template-id="../view/partials/_search_results" type="text/mustache">{{#linker}}

{{#results}}
    <div id="site-search-stocks" class="site-search-section">
        {{#symbolsResultsText}}
            <span class="results-count">{{symbolsResultsText}}</span>
        {{/symbolsResultsText}}
        <h3>Stocks</h3>
        {{#symbols}}
            {{#quote}}
                <a class="quote-box" href="{{quote.link}}">
                    <h4 class="display">{{ticker}}</h4>
                    <div class="company">{{company}}</div>
                    <div class="quote">
                        <span class="price">{{formattedLastPrice}}</span>
                        <span class="change {{netChange}}">{{formattedNetChange}}</span>
                        <span class="change {{changePercent}}">{{formattedChangePercent}}</span>
                    </div>
                </a>
            {{/quote}}
        {{/symbols}}
        {{^symbols}}
            <div class="no-results">No results found</div>
        {{/symbols}}
    </div>
    <div id="site-search-editorial">
        <div id="site-search-columns" class="site-search-section">
            {{#columnsResultsText}}
                <span class="results-count">{{columnsResultsText}}</span>
            {{/columnsResultsText}}
            <h3>Columns</h3>
            {{#columns}}
                <div>
                    <a href="{{columnLink}}">{{title}}</a>
                </div>
            {{/columns}}
            {{^columns}}
                <div class="no-results">No results found</div>
            {{/columns}}
        </div>
        <div id="site-search-authors" class="site-search-section">
            {{#authorsResultsText}}
                <span class="results-count">{{authorsResultsText}}</span>
            {{/authorsResultsText}}
            <h3>Authors</h3>
            {{#authors}}
                <div>
                    <a href="{{authorLink}}">{{name}}</a>
                </div>
            {{/authors}}
            {{^authors}}
                <div class="no-results">No results found</div>
            {{/authors}}
        </div>
        <div id="site-search-topics" class="site-search-section">
            {{#topicsResultsText}}
                <span class="results-count">{{topicsResultsText}}</span>
            {{/topicsResultsText}}
            <h3>Topics</h3>
            {{#organizations}}
                <div class="result-type">Organizations</div>
                <div class="result-value">
                    <a href="/organizations/{{link}}">{{name}}</a>
                </div>
            {{/organizations}}
            {{#people}}
                <div class="result-type">People</div>
                <div class="result-value">
                    <a href="/people/{{link}}">{{name}}</a>
                </div>
            {{/people}}
            {{#subjects}}
                <div class="result-type">Subjects</div>
                <div class="result-value">
                    <a href="/subjects/{{link}}">{{name}}</a>
                </div>
            {{/subjects}}
            {{#companies}}
                <div class="result-type">Companies</div>
                <div class="result-value">
                    <a href="/companies/{{link}}">{{name}}</a>
                </div>
            {{/companies}}
            {{^topics}}
                <div class="no-results">No results found</div>
            {{/topics}}
        </div>
    </div>
{{/results}}

{{/linker}}</script>

<script data-template-id="../../mw.module.article/view/partials/_qt_news" type="text/mustache"><li><span class="timestamp">{{FormattedTimestamp}}</span><a href="{{Url}}?mod=MW_story_hoverstory">{{Headline}}</a></li></script>

<script data-template-id="../view/bulletin" type="text/mustache">{{^Expired}}
{{^closed}}
<div class="bulletin" role="alert">
    <h3 class="bulletin__headline">
        {{^link}}
            <span class="text">{{Subject}}</span>
        {{/link}}
        {{#link}}
            <a href="{{url}}" class="link trackable" data-track-mod="bnbh">{{Subject}}</a>
            <i class="icon icon--arrow-right"></i>
        {{/link}}
    </h3>
    <i class="icon icon--close"></i>
</div>
{{/closed}}
{{/Expired}}</script>

<script data-template-id="../view/investor_alert" type="text/mustache">{{#alert}}
<div id="investor-alert" class="notification">
  {{#text}}
  <h3 class="module-header">Investor</h3>
  <span class="message">
    {{text}}
    <span class="timestamp">{{time}}</span>
  </span>
  <div class="investor-alert-ad">
    {{#sponsor}}
    {{> ad}}
    {{/sponsor}}
  </div>
  {{/text}}
</div>
{{/alert}}</script>

</div> <!-- data-module-name="mw.svc.page.Partials" -->

    <script>
        var ScrillaZilla = {
            number: '2',
            site: 'marketwatch.com',
            zone: 'economy_ecorpt'
        }
    </script>
<script>
    window.__mw_inactiveSettings = {
        isEnabled: true,
        inactiveTime: 120000
    };
</script><script>
    var utag_data = {
	"user_type": "free",
	"user_exp": "Default",
	"page_content_source": "MarketWatch",
	"page_content_region": "North_America_USA",
	"page_content_language": "en-US",
	"page_site_product": "MW",
	"page_site": "MarketWatch",
	"page_ad_zone": "economy_ecorpt",
	"page_access": "free",
	"page_content_type": "Article",
	"page_content_type_detail": "article",
	"page_section": "Economy & Politics",
	"article_id": "0BFF0DB6-2ED7-11E8-81FB-B7175F43D5CD",
	"article_type": "Economic Report",
	"article_template": "full",
	"article_headline": "Home prices are still on fire, Case-Shiller data show",
	"article_headline_orig": "Home prices are still on fire, Case-Shiller data show",
	"article_format": "web",
	"article_publish_orig": "2018-03-27 9:00",
	"article_publish": "2018-03-27 9:00",
	"article_author": "Andrea Riquier",
	"cms_name": "Methode",
	"article_keywords": "construction|real estate|economic news|united states"
};
</script>
<div id="settings" data-e-bg="https://mwstream.wsj.net/bg2" data-e-m="https://api.wsj.net" data-e-ap="https://sts3.wsj.net/bucket-a/foxtrot/public" data-e-u="//www.marketwatch.com/" data-e-vd="https://video-api.wsj.com" data-e-dt="https://api.wsj.net/api/deltoro-mw" data-e-id="https://accounts.marketwatch.com" data-e-reg="https://www.marketwatch.com/sign-up" data-sso-path="news/commenting/spotim/login">
</div><!-- Begin Proximic Tag -->
  <script src="https://segment-data.zqtk.net/dowjones-d8s23j?url=https%3A%2F%2Fwww.marketwatch.com%2Fstory%2Fhome-prices-are-still-on-fire-case-shiller-data-show-2018-03-27"></script>
<!-- End Proximic Tag -->
<!-- Begin Tealium Tag -->
    <script>
        (function(a,b,c,d){
        a='//tags.tiqcdn.com/utag/wsjdn/marketwatch/prod/utag.js';
        b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true;
        a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a);
        })();
    </script>
<!-- End Tealium Tag -->
<!-- Begin Dianomi Tag -->
    <script src="//www.dianomi.com/partner/marketwatch/js/dianomi-marketwatch.js?v=1.1"></script>
<!-- End Dianomi Tag -->
<script async type='text/javascript' id="myFinance-widget-script">
        !function(){function e(){var e=document.createElement("script"),n=document.getElementById("myFinance-widget-script"),a=t+"static/widget/myFinance.js";e.type="text/javascript",e.src=a,n.parentNode.insertBefore(e,n);var c="myFinance-widget-css";if(!document.getElementById(c)){var d=document.getElementsByTagName("head")[0],i=document.createElement("link");i.id=c,i.rel="stylesheet",i.type="text/css",i.href=t+"static/widget/myFinance.css",i.media="all",d.appendChild(i)}}var t="https://www.myfinance.com/";document.attachEvent?document.attachEvent("onreadystatechange",function(){"complete"===document.readyState&&e()}):document.addEventListener("DOMContentLoaded",e,!1)}();
</script>
</body>
</html>