to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
There was little change in the trends for the relative health of the U.S. new home market in June 2024.
The state of that relative health however is far from healthy. While not representing an outright drag on the U.S. economy, the new home market is not a robust contributor to it either. If you want a one-word summary of the state of its relative health, the word "meh" comes to mind.
Following the upward data revisions that altered our view of the trends from negative to neutral last month, perhaps that was to be expected. Or not.
You be the judge. The following charts present the U.S. new home market capitalization, the number of new home sales, and their sale prices as measured by their time-shifted, trailing twelve month averages from January 1976 through June 2024.
As a quick summary of what we see, the trend for the new home market cap ticked up, but not by enough to get excited about. Meanwhile, the underlying number of new home sales ticked down and the trailing average new home sale price ticked up by a small amount in our initial estimates for June 2024. Multiply those last two things together to get the picture for the market capitalization of the new home market in the U.S. and the product is still "meh".
For its part, Reuters played up the negatives in the first estimates of June 2024's new home sales:
Sales of new U.S. single-family homes fell to a seven-month low in June as higher mortgage rates and prices weighed on demand, further evidence that the housing market recovery faltered in the second quarter.
New home sales slipped 0.6% to a seasonally adjusted annual rate of 617,000 units last month, the lowest level since November, the Commerce Department's Census Bureau said on Wednesday. The sales pace for May was revised up to 621,000 units from a previously reported 619,000 units....
New home sales fell 7.7% in the Northeast last month and dropped 6.9% in the Midwest, which is viewed as a more affordable region. They surged 1.4% in the West and gained 0.3% in the densely populated South.
The median new house price dipped 0.1% to $417,300 in June from a year ago. Most of the houses sold last month were below the $499,999 price level.
Unfortunately, that median price level remains well above what a median household in the U.S. can afford. We'll look at that topic in the near future.
U.S. Census Bureau. New Residential Sales Historical Data. Houses Sold. [Excel Spreadsheet]. Accessed 24 July 2024.
U.S. Census Bureau. New Residential Sales Historical Data. Median and Average Sale Price of Houses Sold. [Excel Spreadsheet]. Accessed 24 July 2024.
Image credit: New Home Construction by Paul Brennan on PublicDomainPictures. Creative Commons CCO Public Domain.
Labels: real estate
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.