back to indexBogleheads® Chapter Series - cFIREsim Demonstration
00:00:09.280 |
This episode was hosted by the Chicago Virtual Chapter 00:00:15.600 |
It features Lauren Bolin, the developer of Seafire Sim. 00:00:25.600 |
This recording is for informational purposes only 00:00:27.960 |
and should not be construed as investment advice. 00:00:37.380 |
and whoever else was involved in that email chain. 00:01:06.160 |
of this sort of retirement back-testing calculator 00:01:26.520 |
and it's sort of been this passion project of mine. 00:01:33.140 |
There are a lot of things on this calculator to go over. 00:01:39.520 |
I'll try to hit at least every one a little bit. 00:01:51.000 |
one of the most important things about my site 00:02:05.360 |
And I'll get into that a little bit on the history. 00:02:08.080 |
So at the end, if your question isn't answered, 00:02:18.060 |
So here's sort of a rough agenda I'm gonna go over. 00:02:30.980 |
and go over a little bit of my sort of development practices, 00:02:34.700 |
which I won't get too much into the tech details 00:02:40.000 |
but I have a little bit of information out there 00:02:42.560 |
if you're the kind of person that's interested. 00:02:45.600 |
Then I'm gonna sort of go over basic functionality 00:02:47.560 |
on the site, some of the more advanced features. 00:02:54.620 |
And then I'm gonna go over some sort of fictional scenarios 00:02:58.400 |
to show you how someone would use it given your situation, 00:03:12.000 |
or maybe you're gonna have a part-time job in retirement. 00:03:19.360 |
Then at the end, I can talk about any sort of questions. 00:03:40.520 |
in sort of the retire early, the fire movement, 00:03:50.940 |
when your money, your life was really the only resource. 00:03:53.920 |
I was kind of really involved in the internet 00:04:01.380 |
with Mr. Money Mustache and various other people. 00:04:04.660 |
And now that sort of movement is quite rampant out there. 00:04:13.240 |
I was a moderator on Mr. Money Mustache forums, 00:04:17.500 |
was a moderator on the Reddit financial independence site. 00:04:23.860 |
So a little bit of history about Seafire Sim. 00:04:30.740 |
Really this project was born out of conversations I had 00:04:48.540 |
but earlyretirement.org is sort of the forum website 00:04:53.180 |
that happens to be attached to a website called FireCalc. 00:05:09.660 |
And I believe the data is updated yearly still. 00:05:27.880 |
He retired and is living on a boat as far as I know. 00:05:34.860 |
But the folks at earlyretirement.org get a lot of clicks 00:05:52.920 |
that there were people asking for new features 00:06:00.840 |
So it was a lot of people sort of screaming into the void. 00:06:08.640 |
And I thought that, hey, this would be a great project. 00:06:16.440 |
is that FireCalc outputs a CSV file at the end. 00:06:31.140 |
So I figured if I looked at this long enough, 00:06:33.280 |
I could reverse engineer it and figure out what's going on. 00:06:39.840 |
I think it took me a month of nights and weekends 00:07:00.900 |
I took a lot of input from folks on that forum 00:07:05.820 |
and from folks on Reddit and other places during that time. 00:07:10.280 |
There's a couple of people who are either on this call 00:07:12.320 |
or will be listening that were a big part of that. 00:07:16.760 |
I've never actually heard his name said out loud, 00:07:20.560 |
but Jerome Moisand is a Boglehead in your group 00:07:30.320 |
that also I spoke to quite a bit about 10 years ago. 00:07:34.280 |
So if you're out there, thank you for your help. 00:07:36.680 |
And anyway, I put this project out there in 2013, 00:07:42.160 |
and personal finance and FHIR is sort of my thing. 00:07:45.520 |
And I actually used it as a way to shift my career. 00:07:53.380 |
so it's great to be paid for something that you like. 00:08:00.600 |
going over sort of general development practices 00:08:02.920 |
of how this tool work or how I work on this tool 00:08:07.720 |
I host this on a platform called DigitalOcean, 00:08:20.240 |
I sort of viewed the websites written in Python 00:08:25.520 |
and a framework called Django as a MySQL database. 00:08:31.600 |
And of course, there's some JavaScript written in there 00:08:47.280 |
One of the things I know a lot of people are concerned about 00:08:54.580 |
When I add a new feature, does it change the outputs? 00:09:01.720 |
Some of the time, it does change the outputs. 00:09:06.360 |
And the question is whether or not that's the intended thing. 00:09:10.980 |
I talk to a lot of people when I make changes 00:09:19.000 |
A very big example of this is I would say sometime in 2014, 00:09:28.960 |
I'll provide a link that we can attach to this video 00:09:38.720 |
someone came up to me in the forums and said, 00:09:41.200 |
"Hey, how do you calculate the bonds on your site?" 00:09:46.200 |
And I gave them the formula that I'd been using. 00:10:02.180 |
They came to me and they offered some information 00:10:08.160 |
and we sort of hashed out the mathematical formula. 00:10:23.360 |
It turns out that the FireCalc and a lot of different sites 00:10:33.360 |
and came up with a slightly different formula, 00:10:39.680 |
I would say that there's probably a two or 3% difference 00:10:44.080 |
in success rates between CFIR-SIM and FireCalc 00:10:53.060 |
So this is sort of like an interesting point in testing 00:11:02.720 |
And for those who are not software developers, 00:11:10.880 |
And every time you make a change in your software, 00:11:14.240 |
you can just run them immediately and see what happens. 00:11:17.640 |
If those predetermined outcomes are different, 00:11:25.580 |
Honestly, the biggest thing that I rely on is user testing. 00:11:29.520 |
Almost, I would say 95% of the bugs that happen on my site 00:11:37.580 |
I was mentioning to Jim before everyone came on 00:11:43.640 |
that lets you kind of mess around with the UI. 00:11:47.800 |
I'm not used to doing anything with JavaScript. 00:12:05.880 |
I don't wanna make this thing too complicated in the end. 00:12:11.760 |
But over the years, I've added a lot to the site 00:12:23.160 |
That is basically some of the back end history of this. 00:12:28.160 |
And I'm gonna go through some of the basic functionality 00:12:45.200 |
you're presented with what I call the giant form. 00:12:52.400 |
You can open it up depending on what you select 00:13:18.240 |
Robert Schiller's dataset has like sort of the S&P 500 00:13:22.200 |
equivalent stock index for the last 170 years 00:13:31.480 |
And I also have a separate data source for gold. 00:13:36.480 |
One thing that I would say is lacking in this program 00:13:46.480 |
I've never been able to find a good historical cash data 00:13:54.880 |
and I've never bothered to sort of jam those together. 00:14:00.520 |
So that being said, I offer the ability for you 00:14:10.080 |
how much growth you think cash will have in your portfolio. 00:14:25.000 |
I would say pretty common for a lot of retirement calculators 00:14:48.360 |
and see if their portfolio would have survived, 00:14:50.800 |
which is useful, but I mostly like to see everything. 00:14:55.000 |
And then you sort of have your portfolio value 00:15:01.640 |
And then what your yearly spending is now in today's dollars. 00:15:07.160 |
So I'm not gonna assume people's knowledge here, 00:15:25.880 |
and right now you're spending $40,000 a year, 00:15:29.040 |
sure, maybe in 30 years, that's gonna be $70,000. 00:15:36.320 |
I personally find it easier to wrap my brain around 00:15:43.000 |
And everything does get adjusted by inflation 00:15:54.080 |
Spending plan is something I'll go over later. 00:16:00.640 |
But right now, this is inflation-adjusted spending, 00:16:03.400 |
which will adjust this initial value up and down 00:16:21.480 |
So this is CPI, this is the historical inflation. 00:16:29.760 |
Some people like to use this for sort of bad scenarios 00:16:33.520 |
where they're like, oh, maybe inflation's gonna be 4% 00:16:40.600 |
I'm not sure, but I tend to use historical myself. 00:16:52.640 |
Everything else below here is sort of adding details 00:16:56.760 |
to make it more of a fine-grained simulation. 00:17:09.480 |
Important to note that this is essentially the portfolio 00:17:18.000 |
Now, you may ask, I'm gonna change my portfolio, 00:17:38.320 |
which sort of takes your allocation at one point 00:17:44.840 |
So the default here is 75% equities, 25% bonds. 00:17:56.920 |
If you want to do those glide path type things, 00:18:01.520 |
you would uncheck this, keeping the allocation constant. 00:18:13.360 |
this person is retiring in 2021, which is this year. 00:18:18.360 |
There are some financial gurus that seem to think 00:18:29.160 |
and slowly move to a more aggressive one during retirement, 00:18:49.600 |
and here is the start year of the glide path, 00:18:58.360 |
it's gonna slowly ratchet it up to a 90/10 portfolio. 00:19:04.360 |
I would say one of my personal to-do lists for features 00:19:09.360 |
would be to add the ability to do more than one of these. 00:19:22.760 |
throughout their investment careers multiple times. 00:19:26.520 |
So I wish I could do this twice or three times, 00:19:30.520 |
but right now you have the ability to do it once. 00:19:33.480 |
For simplicity's sake, I'm gonna hide this for now, 00:19:48.680 |
You'll sort of notice that a lot of things on this website 00:20:00.320 |
I haven't found a lot of people have a problem with that, 00:20:21.760 |
I mean, maybe people are doing it every quarter. 00:20:26.040 |
All this means is it's rebalancing your funds 00:20:28.440 |
back to this portfolio every year based on the simulation. 00:20:33.440 |
If you don't do that, it'll just let the simulation drift. 00:20:46.840 |
That's certainly an interesting thing to simulate. 00:20:50.920 |
You can try it out on your own and see the effects of that. 00:20:57.600 |
And lastly, one thing I haven't mentioned here is fees. 00:21:11.440 |
People have different fees and different accounts 00:21:20.920 |
I put this in here as just an overall average 00:21:26.880 |
This is like some sort of average of Vanguard funds 00:21:30.880 |
that I found out there, so I put it in there. 00:21:38.800 |
we start getting into some of the inflows and outflows 00:21:50.800 |
I do have several people from Australia and the UK 00:21:54.040 |
that visit this site and make use of other adjustment types. 00:22:01.840 |
and I will be collecting Social Security hopefully, 00:22:06.480 |
So we have two different Social Security fields, 00:22:15.520 |
By popular request, I've made it so that you can change this 00:22:37.120 |
it will do the right thing on the backend of the simulation. 00:22:40.920 |
Of course, you can model different start years. 00:22:49.680 |
whether it would be worth it to take Social Security early 00:23:00.640 |
And of course, I used to not have an end year in here. 00:23:05.640 |
I used to just assume, hey, this is gonna be, 00:23:09.360 |
you're collecting this for the rest of your life, 00:23:11.200 |
but lots of people want to model their spouse's deaths. 00:23:31.120 |
It's sort of a general term for the inflows and outflows 00:23:35.920 |
of money in your portfolio each year in the simulation. 00:23:39.440 |
A pretty common theme, and I'll show you right here, 00:23:50.000 |
I believe I've allowed up to 10 adjustments in here. 00:23:57.760 |
But this is essentially where you would put your pensions, 00:24:02.440 |
where you would put a different spending things 00:24:10.360 |
and then you're gonna start paying for your kid's college. 00:24:13.120 |
So you know, my kids are gonna be in college in 2030. 00:24:17.880 |
And then I've got another kid in college, 2033. 00:24:22.800 |
So I would model a couple of different spending things. 00:24:28.640 |
Good old in-state tuition in Virginia right now 00:24:46.120 |
any sort of income and savings, which could be, 00:24:55.760 |
you're renting a house out and you're a landlord. 00:25:12.600 |
And this particular adjustment will only happen on 2030. 00:25:17.200 |
So these things, these kinds of things are pretty useful. 00:25:22.960 |
Some of the inputs in here might look familiar. 00:25:30.160 |
You know, amount per year, that's pretty simple. 00:25:38.080 |
I find this useful mostly because there's an ability 00:26:21.840 |
where they meant spending and they put savings. 00:26:24.160 |
And they're like, why do I have so much money at retirement? 00:27:05.600 |
but I don't pay much attention to her pension and stuff. 00:27:09.480 |
But this little checkbox essentially is for pensions. 00:28:18.600 |
even though you're not taking this pension until 2030, 00:28:23.200 |
this adjusts that value for inflation every single year. 00:28:32.800 |
That wouldn't normally be a problem for a lot of things, 00:28:38.680 |
pensions have this knack for being frozen in time 00:28:50.440 |
I forgot to mention at the very beginning of this, 00:28:55.320 |
Fairly recently, I've started writing tutorials 00:28:59.480 |
that sort of describe some of this functionality. 00:29:05.760 |
and you don't wanna go back through the video, 00:29:10.120 |
you can certainly check out this tutorial section. 00:29:17.240 |
about the basic section and what the output looks like, 00:29:24.800 |
I've already written articles for spending plans. 00:29:34.480 |
I'm gonna quickly scan over essentially the information 00:29:49.560 |
Recurrent, the recurrence button, I sort of mentioned. 00:29:54.040 |
Does this occur over a span of years or is it just once? 00:29:57.880 |
And then whether or not this is inflation adjusted or not 00:30:03.800 |
Just like above, you can choose the inflation type. 00:30:14.320 |
have a flat rate adjustment, so that can be pretty useful. 00:30:37.800 |
So spending plan has lots of different things 00:30:40.720 |
that show up after you click the appropriate spending plan. 00:30:49.480 |
Firstly, though, I'm going to refresh this page, 00:31:02.240 |
In fact, I'm pretty sure this is the exact same inputs 00:31:11.680 |
but it counts this year and this if you, it's 30 years. 00:31:16.680 |
With a million dollars and $40,000 spending per year, 00:31:25.480 |
I'm gonna hit Enter or hit this button up here. 00:31:28.480 |
And this lovely rainbow graph is what you would see 00:31:44.000 |
to put as much information out there as I can 00:31:51.080 |
However, I do understand that because I'm the one 00:32:01.280 |
So I'm gonna go over a couple of the sections here. 00:32:08.920 |
So what this is is essentially every single simulation 00:32:15.600 |
of 30-year span over the course of history, starting in 1871. 00:32:21.720 |
And what I mean by that is, let me see if I can, 00:32:24.560 |
I think I wrote a pretty nice graphic of this. 00:32:40.480 |
So what you have to imagine is this data goes back to 1871. 00:32:47.600 |
So it's gonna take your inputs and it's gonna go to 1871 00:32:52.600 |
and put them in as a theoretical million dollars 00:32:59.600 |
And it's gonna run the data from 1871 to 1901. 00:33:03.680 |
And it's gonna see how your portfolio would have done. 00:33:06.720 |
Then it's gonna start a new simulation in 1872 00:33:17.040 |
which if I try real hard, I can find it in here. 00:33:28.200 |
and you can kind of get a sense of what's going on here. 00:33:33.800 |
There are periods of, if you hover over this, 00:33:41.000 |
So right here, it's kind of hard to see in the blues, 00:33:52.280 |
of the stagflation period in the late '60s and early '70s. 00:33:56.440 |
So what this represents is your portfolio over time. 00:34:02.120 |
Now, like I mentioned before, this is today's dollars. 00:34:06.560 |
So it's adjusted to make it easier on your brain 00:34:18.240 |
However, in nominal dollars, this is probably way more. 00:34:26.000 |
and say this is like $11 million, double that or more 00:35:10.840 |
And this is not gonna be very easy to show people, 00:35:21.800 |
and it has every year of every 30 year period 00:35:31.000 |
So if you go to the top, it says the cycle start year 00:35:47.280 |
as the spending and the inflation adjusted spending. 00:36:08.440 |
3.2 million and the inflation adjusted was higher. 00:36:22.760 |
but good to know that you can look at all the numbers there. 00:36:31.720 |
that will allow you to get back to your same inputs. 00:36:35.320 |
A lot of people ask me why I don't have a login system 00:37:01.600 |
I have no idea who put them in and I'm okay with that. 00:37:17.080 |
So I anonymize the data and I put it into here as a link 00:37:20.960 |
so you can get back to it rather than have a login system 00:37:27.800 |
Maybe that makes you feel like this tool is clunky. 00:37:44.160 |
I can't point to it while being on the screen, 00:37:46.440 |
but if you look below, it says that the year is 1953, 00:37:50.640 |
the cycle start year of this particular simulation was 1935. 00:37:55.000 |
And at this point in time, the portfolio is 1.3 million. 00:38:01.560 |
you can kind of get a good idea of what happened in history. 00:38:04.560 |
Very similar to this chart is right next to it, 00:38:10.040 |
the inflation adjusted spending over all the simulations. 00:38:14.720 |
Now, a lot of people get confused when they first see this 00:38:20.480 |
Well, because you chose $40,000 as a spending point 00:38:38.440 |
If we choose other spending plans, which are variable, 00:38:58.040 |
and then let you sort of figure it out after that. 00:39:02.080 |
I think the most important thing is this little section here 00:39:13.920 |
as you still having any money in your portfolio 00:39:18.200 |
when the simulation is over or when you're gone. 00:39:22.160 |
You can have $1 in your account and it will be a success. 00:39:27.080 |
If you look on this chart, there are a couple of these. 00:39:30.880 |
This is the very last year of this portfolio. 00:39:33.840 |
It started off with a million dollars, it's down to 50,000, 00:39:50.400 |
this particular setup would have only failed five times. 00:39:55.120 |
This is essentially the definition of the 4% rule 00:40:02.480 |
The 4% rule is not 100% successful, it's 95% successful, 00:40:09.920 |
Yeah, I'm not gonna tell you what success rate 00:40:19.000 |
You can look and read a lot about that topic. 00:40:45.200 |
and you have a 50% success rate for retiring, 00:40:50.280 |
that if you did that every single year, you'd be fine, 00:41:01.240 |
Probably not, but that's up to you to decide. 00:41:13.000 |
This number here is sort of what your portfolio was 00:41:29.040 |
Beyond that, this entire side, the left side, 00:41:38.160 |
This entire right side is talking about your spending. 00:41:41.320 |
I have all sorts of statistical numbers in here. 00:42:02.320 |
And then by popular demand, I put in the lowest 10%, 00:42:17.160 |
You'll sort of notice that a lot of these numbers 00:42:23.000 |
When you have very flat data, it tends to end up like that. 00:42:28.480 |
Like I said before, the spending is $40,000 flat every year, 00:42:39.840 |
I'm not gonna go over this entire chart for spending, 00:42:42.040 |
but I will say that I've split it up into quarters 00:42:53.040 |
these are both statistics that are very often cited 00:43:01.920 |
or people even on the Bogleheads forums will say, 00:43:06.040 |
the first five years is the most dangerous part 00:43:09.880 |
So I've included sort of statistics on spending 00:43:21.280 |
do these quarters mean only the retirement period? 00:43:46.160 |
I kind of hide this a little bit because it's long 00:44:31.320 |
Actually, this makes sense because right here, 00:44:34.360 |
starting year of 1967, the very next year, it goes to zero. 00:44:41.240 |
People like to see how low it goes before failure. 00:44:45.000 |
If you happen to have a simulation that has 100% success, 00:44:57.800 |
if you're the kind of person that likes to look 00:45:14.560 |
Another basic functionality to note is if you look up here, 00:45:21.280 |
When you submit the form, it doesn't refresh the page. 00:45:25.680 |
It opens a little tab here and puts the information here. 00:45:40.080 |
Now, what you can do is you can do things like this. 00:45:45.080 |
The retirement end year is 2050 in this case. 00:46:06.000 |
This shows the statistics for what I just put in. 00:46:16.080 |
But most importantly, what I wanted to show you 00:46:41.600 |
If I go back to one and then go back to the inputs, 00:46:46.600 |
it will load it from Sim Tab 1, which was 2050. 00:46:52.760 |
So it's kind of useful if you're sort of iterating through 00:46:59.000 |
that how many years you can retire or things like that. 00:47:09.680 |
which I hope is intuitive, and it will make it go away. 00:47:24.400 |
So I haven't gotten to do a lot of these yet, 00:47:29.400 |
but if you click this button, Open Investigation Options, 00:47:45.480 |
And I can't remember if FireCalc does something similar, 00:47:56.920 |
it's gonna look for the maximum initial yearly spending 00:48:20.960 |
to figure out what is the maximum number of spending here 00:48:39.400 |
'cause it actually runs multiple scenarios in a row. 00:48:45.360 |
So I would not worry too much about it spinning. 00:48:49.040 |
Okay, this looks a lot like the other simulations, 00:48:53.120 |
but down here, I sort of write this little note 00:48:57.800 |
Then it tells you the maximum initial spending 00:49:10.280 |
I would say that this is accurate within $10 usually. 00:49:15.680 |
Just the way that I'm iterating through the thing, 00:49:18.920 |
it makes it really inefficient to find it down to the $1. 00:49:24.920 |
So if you were to put this amount back in the Inputs tab, 00:49:37.320 |
it should give you the same amount of success. 00:49:44.600 |
Really hoping I can make it through this demo 00:50:08.840 |
I don't know if we wanna take any questions now. 00:50:16.840 |
Spending plans are my favorite part of this tool. 00:50:20.000 |
Honestly, this is the thing that I mess with the most 00:50:25.920 |
And I think that it's a pretty undervalued thing. 00:50:37.760 |
and I am not, this is not part of their work. 00:51:08.760 |
and they know roughly what their average spending is. 00:51:11.440 |
We can do that with these different variable spending plans. 00:51:17.840 |
VPW was just asked about in the question and answer section. 00:51:29.960 |
essentially a spending plan or a variable spending plan. 00:51:41.080 |
I can't remember the username off the top of my head. 00:52:06.600 |
sort of the standard inflation adjusted simulations. 00:52:11.440 |
And they would see that a person who had a million dollars 00:52:17.640 |
would end up with a portfolio of $6 million at the end. 00:52:38.160 |
you can't just say, I'm gonna spend 60,000 a year. 00:52:46.360 |
You can't just say, I'm gonna spend 60,000 a year 00:52:48.600 |
because if you spend a flat 60,000 a year, it fails a ton. 00:52:53.400 |
And it's just not sustainable, you can't do that. 00:53:00.520 |
to get as close to zero at the end of life as possible. 00:53:29.760 |
and then based it on whatever future value you wanted. 00:53:34.760 |
So these two values are new values when you select VPW. 00:53:54.720 |
what you want your portfolio to be at the very end. 00:53:58.040 |
Now, this number is largely ignored in the VPW. 00:54:02.920 |
I believe it has some significance to the starting point 00:54:07.920 |
but it very quickly gets changed along the way. 00:54:16.560 |
I'm gonna refresh this real quick to the defaults 00:54:24.920 |
I'm just gonna run the simulation and see what happens. 00:54:35.080 |
Now that means that the portfolios were above zero 00:54:44.880 |
it looks a lot different than the other ones. 00:54:47.280 |
If you look, everything is spiraling down to zero 00:54:53.560 |
So the math behind this allows you to spend it down 00:54:57.800 |
so that you essentially end up with less money 00:55:04.880 |
this is the first time you've seen the spending graph 00:55:10.640 |
Now, if you look here, this might be sort of unfathomable. 00:55:27.400 |
Well, I mean, it follows the market sort of gains 00:55:55.120 |
But so if you look here, it goes up and down quite a bit. 00:56:08.480 |
But if you look on the left side of this chart, 00:56:21.800 |
So this is an interesting example of something crowdsourced. 00:56:32.840 |
It's still a very, I think it's a very trafficked thread. 00:56:37.680 |
But that person came to me in like 2015 or 2014 00:56:47.320 |
So it's kind of an interesting way of thinking 00:56:51.840 |
about spending if you're willing to spend it all down. 00:56:58.880 |
one thing to note is you can change the future value. 00:57:01.520 |
If you're planning on spending more than normal, 00:57:05.760 |
but you want more than just zero left at the end, 00:57:09.640 |
maybe you wanna leave 200,000 to your kids or something, 00:57:16.120 |
and it tries real hard to make things happen at 200,000. 00:57:28.400 |
through the entire video without a bug, but here we go. 00:57:41.320 |
It looks like they're failing right before the end. 00:57:56.760 |
of course, this is the not inflation adjusted scenario. 00:58:00.760 |
Essentially, it takes your spending and never changes it. 00:58:05.720 |
That means over time, your actual value of your money 00:58:10.720 |
is gonna go down because inflation's gonna be 00:58:23.320 |
Now, what's interesting here is in the early 1800s, 00:58:28.880 |
So even though you're not adjusting your spending here, 00:58:33.800 |
your inflation adjusted value of that spending 00:58:42.360 |
But the vast majority of sort of modern times, 00:58:45.640 |
the value of that money is going down quite a bit. 00:59:14.120 |
that you don't wanna be eating cat food in retirement. 00:59:17.160 |
So if your spending reduces to half of what it started, 00:59:30.720 |
Okay, this is a pretty simple one on its surface, 00:59:37.000 |
but there's some nuances that a lot of people miss. 00:59:39.840 |
So percent of portfolio pops up one new field 00:59:48.200 |
which is a percentage of the portfolio for that given year. 00:59:56.640 |
if you're not familiar, which I hope you are if you're here, 00:59:59.280 |
but if you're not familiar for people out there, 01:00:04.400 |
where they had portfolios of people at retirement 01:00:16.000 |
their starting spending was 4% of that portfolio value. 01:00:21.000 |
Then from then on out, no matter what the portfolio did, 01:00:25.800 |
you just only adjusted your spending for inflation. 01:00:34.560 |
This particular spending plan, percent of portfolio, 01:00:39.280 |
every single year, it's going to take your portfolio value 01:00:46.760 |
If you start off with a million dollar portfolio 01:00:56.320 |
And that's what it's gonna set your spending to. 01:01:09.360 |
your spending would have gotten up to $157,000 01:01:13.600 |
Now, this says here that it's 100% success rate. 01:01:31.320 |
So if you look here, the spending in this year 01:01:37.200 |
That's because the portfolio dropped quite a bit. 01:01:44.640 |
of the portfolio, it's almost never gonna go to zero. 01:01:47.520 |
So how do we simulate these on a more realistic manner? 01:01:54.160 |
If we go back here, I'm gonna introduce this other section 01:01:58.880 |
of the variable spending that is very important. 01:02:01.840 |
It's a concept of a spending floor and a spending ceiling. 01:02:06.840 |
So, well, I'm gonna go back to the tab real quick. 01:02:09.720 |
If we look here, we're trying to spend 4% of our portfolio. 01:02:14.720 |
Now, if you're trying to stay within the realm 01:02:22.320 |
you look at this chart and you say, wow, it's really, 01:02:29.480 |
and it goes down to the major, I'm eating cat food level. 01:02:36.880 |
We do that with spending floors and spending ceilings. 01:02:43.160 |
and I'm gonna choose a defined spending floor value, 01:02:46.800 |
is that the simulation will never allow the spending 01:03:00.960 |
I can take a 10% haircut on my spending and be okay. 01:03:10.280 |
Now, if we just run this as is without doing the ceiling, 01:03:27.440 |
However, it also goes out of control in these other places. 01:03:36.800 |
and when your portfolio goes crazy, you can go crazy too. 01:03:54.800 |
what we can do is we can rein in the spending 01:04:41.080 |
So if you look, there's some very distinct flat tops 01:04:45.400 |
It's bouncing around in between the spending floor 01:04:53.880 |
I think that it's one of the more realistic things 01:04:59.400 |
Most people will have sort of this idea in their head 01:05:03.960 |
and they'll have like a sort of belt tightening amount 01:05:08.200 |
in their head that they don't wanna go below. 01:05:10.360 |
And then on good years, maybe they'll spend more. 01:05:22.760 |
One of the things you can do is set the floor 01:05:37.800 |
and say this person has $30,000 worth of pensions 01:05:42.640 |
and social security, if you can set the floor to be that, 01:05:46.960 |
then it's a quick and easy way to deal with the floor. 01:05:51.960 |
I don't have that same ability for the ceiling 01:05:56.440 |
'cause I think it's kind of silly to be able to select