This is going to be a rather abstract post on the safe rate of withdrawal because too much ink has been spent on this problem.
I think the bigger tragedy is that too little code has been written to address this issue.
As of this week, I have been able to inch closer to resolving this for retail investors by combining several programs I wrote on Python.
Here's how I think the issue can be resolved once and for all:
a) Define a retirement portfolio that generally works and is uncontroversial.
This can be done by any advisor. I did this with a 50/50 portfolio of VT and AGG. A large global equity ETF combined with a US Govt Bond ETF.
Once we have defined this, we can look at historical returns. In such a case, we programmatically find out the statistics of using such a portfolio over the past 10 years. My program output looks like this.
The numbers are not too bad for a 50:50 Stock:Bond fund. Even better, the period coincides with a recovery from the 2009 recession so it's not too different from the current climate.
b) Generate a probability distribution function with the same statistics as the numbers obtained.
This is the hardest part of solving the problem.
If we assume that returns are normally distributed, we will not be able to account for the skew and kurtosis (fat-tails) of financial markets. I was googling for an answer and managed to find a function that can do that on Python.
However, mathematicians are warning that it can be inaccurate, but I'm an engineer and not a mathematician and really don't give a flying fuck.
Source-code is attached. It was a bitch to debug the code done by the original guy.
The pdf turns out to be really unlike any distribution of a balanced portfolio proving that mathematicians are not really jiak liao bee and are worth listening to, but such are the limits of what can be done using Python at the moment:
From the analysis, in 1000 alternate universes, 982 can sustain a VT:AGG portfolio with 18 fails, failure defined as a portfolio 80% lower than the starting value ( < $20,000 )
- If you take a 20-year backtest, the return statistics of the retirement portfolio changes too drastically and can impact the number later.
- Mathematicians say that it is not straightforward to generate a PDF with four moments of return, variance, skew and kurtosis. So the function call itself is suspect.
- No one really withdraws a percentage value. Your cost of living is likely a fixed number.
No comments:
Post a Comment