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
How big is the U.S. Federal Reserve's balance sheet? What kind of assets does it hold? What is the value of those assets?
Three questions, the answers for which we've presented in the following two interactive charts! In the first chart below, we show the value of the major asset categories the U.S. Federal Reserve has held on its balance sheet in each week from 18 December 2002 through 14 August 2019, which provides the data needed to answer all three questions. [If you're accessing this article that republishes our RSS news feed, you might consider clicking through to our site to access a working version of the interactive chart, or if you prefer, you can click here for a static version.]
Our second chart presents the same data, but this time in a stacked area format, which makes it easier to find the answer to the first question of how big the Fed's balance sheet has been from 18 December 2002 through 14 August 2019. [Click here for a static version of this second chart.]
Starting at 18 December 2002, the Fed's balance sheet consisted mainly of U.S. Treasuries, which grew from $629 billion at that time to roughly $800 billion in late 2007. The onset of the Great Recession saw the Fed's balance sheet crash to a level of roughly $450 billion by mid-2008, after which the size of the Fed's balance sheet inflated in three major phases through its quantitative easing monetary policy, in which it sought to prop up government supported agencies such as Fannie Mae and Freddie Mac by buying bonds these entities issued to support their operations (Federal Agency Debt), while also buying up the Mortgage Backed Securities these institutions issued to prop up the U.S. housing market. At the same time, the Fed also funded the U.S. government's deficit spending by buying copious amounts of U.S. Treasuries.
By January 2015, the combined amount of all these assets averaged roughly $4.25 trillion, which the Fed held stable at this level until late 2017, when the Fed began actively reducing the amount of its balance sheet holdings through its quantitative tightening monetary policy. Through 14 August 2019, the combined total of these three major asset categories fell to $3.6 trillion, $625 billion less than the average level it held from 2015 through most of 2017.
If we use Morgan Stanley's estimate that each $200 billion reduction in the Fed's balance sheet has the equivalent effect of a 0.25% hike in the Federal Funds Rate, the Fed's active balance sheet reduction quantitative tightening program since late 2017 has had the equivalent effect of increasing the Federal Funds Rate by an additional 0.8% over its official target range of 2.25-2.50% through the end of July 2019.
On 31 July 2019, the Fed acted to cut its target range for the Federal Funds Rate by a quarter percentage point and to suspend its balance sheet reduction program, effective 1 August 2019.
U.S. Federal Reserve. U.S. Treasury Securities Held by the Federal Reserve: All Maturities. [Online Database]. Accessed 17 August 2019.
U.S. Federal Reserve. Federal Agency Debt Securities Held by the Federal Reserve: All Maturities. [Online Database]. Accessed 17 August 2019.
U.S. Federal Reserve. Assets: Securities Held Outright: Mortgage-Backed Securities. [Online Database]. Accessed 17 August 2019.
Labels: data visualization, national debt
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.