Time Value of Money
Project description
- Author:
Ken Kundert
- Version:
1.0.0
- Released:
2020-07-19
What?
Time value of money calculations relate the following quantities:
future value
present value
payments
number of periods
discount rate
tvm computes one of these values (other than discount rate) given the others.
The number of periods is split between two values, the number of years and the number of periods per year (the frequency).
Getting Started
Install using:
pip3 install --user tvm
This installs tvm to ~/.local/bin; make sure this directory is on your path.
Usage:
tvm [options] [fv|pv|pmt|years]
Options:
-f <val>, --fv <val> future value -p <val>, --pv <val> present value -P <val>, --pmt <val> payment per period -y <val>, --years <val> total number of years -n <val>, --freq <val> number of payments per year -r <val>, --rate <val> annual discount rate -i, --ignore ignore any previously specified values
If a value is not given it is recalled from the previous invocation. Specify --ignore to use the default values for all unspecified options, which are: pv = 0, fv = 0, pmt = 0, years = 30, freq = 12.
When the program runs, it always shows the specified values along with the computed value to make it easy for you to confirm that you used the right values. The computed value is capitalized and shown in a different color to make it easier to pick out.
Savings Accounts
Consider case where you have a interest bearing account that pays 5% per annum compounded monthly. If you start with $10,000, you can compute the amount you will have after 5 years with:
tvm --pv=10000 --rate=5 --freq=12 --years=5 fv
The amount in 5 years is referred to as the future value (fv). The current amount is the present value (pv). The frequency is the number of periods per year. The program responds with:
pv = $10,000.00 pmt = $0.00 FV = $12,833.59 r = 5% periods = 60 years = 5
periods is the total number of periods and equals the product of the years and the number of periods per year.
You can specify values with SI scale factors, units, and commas. The units and commas are ignored. So you can do the same thing with either:
tvm --pv='$10,000' --rate=5% --freq=12 --years=5 fv
or:
tvm --pv=10k --rate=5% --freq=12 --years=5 fv
The quotes are needed in the first case to prevent $ from being interpreted by the shell.
tvm remembers the values specified on the previous invocation and uses them if they are not specified. This allows you to rapidly run what-if experiments without having to re-specify values that do not change. So, once you have run the first command, you can now quickly determine how much you will have in 10 years using:
tvm -y 10 pv = $10,000.00 pmt = $0.00 FV = $16,470.09 r = 5% periods = 120 years = 10
Without changing anything else, you can determine what happens if you make an additional $100 contribution each month:
tvm --pmt 100 pv = $10,000.00 pmt = $100.00 FV = $31,998.32 r = 5% periods = 120 years = 10
Loans
You can also use tvm to explore loans. For example, you can compute the payment for a mortgage given the principal, interest rate, and length:
tvm --ignore --pv=-250k --rate=4.375 --years=30 pmt pv = -$250,000.00 PMT = $1,248.21 fv = $0.00 r = 4.375% periods = 360 years = 30
The --ignore option was added so that we start from scratch; any values that were previously specified are ignored.
You can now understand how paying a little extra affects how long it takes to pay off the loan using:
tvm --pmt=1.5k years pv = -$250,000.00 pmt = $1,500.00 fv = $0.00 r = 4.375% periods = 257.08 YEARS = 21.42
To compute the payments for a 5-year interest only balloon mortgage, use:
tvm -y 5 -f -250k pmt pv = -$250,000.00 PMT = $911.46 fv = -$250,000.00 r = 4.375% periods = 60 years = 5
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file tvm-1.0.0.tar.gz
.
File metadata
- Download URL: tvm-1.0.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 065edbc3d9b365abb0e0eba7929d4a59207d15ec8c1b55488ded9d9b130a2714 |
|
MD5 | 29c7e3f0f60b90393cdf879b27e6f1f2 |
|
BLAKE2b-256 | 3165a1afe151d033ab2c27be92815ff52a3b62c43accf9f770da832f36228c1b |