Created
November 14, 2017 05:48
-
-
Save bramp/914ac729382899215c95ad7618c701b0 to your computer and use it in GitHub Desktop.
401k/IRA flow chart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph "401k" { | |
label = "Assumptions - 2018 - Age < 50 - Single - Income > $135k - 50% company match of 401(k)\n"; | |
"Pay Cheque (Pre-tax)" -> "Pre-tax 401(k)" [ label = "Max $18.5k*" ]; | |
"Pay Cheque (After-tax)" -> "Roth 401(k)" [ label = "Max $18.5k*" ]; | |
"Pay Cheque (After-tax)" -> "After-tax 401(k)" [ label = "Max $27.25k" ]; | |
"Pay Cheque (After-tax)" -> "Bank Account (After-tax)"; | |
"Bank Account (After-tax)" -> "Traditional IRA" [ label = "Max $5.5k" ]; | |
"Pre-tax 401(k)" -> "Roth IRA" [ label = "Roth conversion\n(Pay Taxes)" ]; | |
"Pre-tax 401(k)" -> "Traditional IRA" [ label = "Rollover" ]; | |
"Traditional IRA" -> "Roth IRA" [ label = "Roth conversion\n(Backdoor)" ]; | |
"After-tax 401(k)" -> "Roth 401(k)" [ label = "Rollover\n(Mega Backdoor)" ]; | |
"After-tax 401(k)" -> "Roth IRA" [ label = "Rollover\n(Mega Backdoor)" ]; | |
"Roth 401(k)" -> "Roth IRA" [ label = "Rollover" ]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment