It's a cli tool build in rust, that helps calculate intrinsic value of an investment. The cli is inspired by the Mohnish Pabrai book "Dhandho Investor" which I still feel it's one of the best starting investing book.
bash
cargo install dhandho
```bash dhandho help
dhandho 0.1.0 Alexandru Olaru. alxolr@gmail.com
USAGE:
dhandho
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: cagr Calculated the compounded anual growth rate help Prints this message or the help of the given subcommand(s) intrinsic Computes the intrinsic value of an asset by providing different parameters kelly Maximaze the gains by providing different assumptions. Ex: -a 0.8,21.0 ```
CAGR Compounded anual growth rate.
You bought a Pokemn Trading card in 2012 at a price of 100\$. In 2022 your card is listed on ebay at a price of 350$. Calculate the compounded anual growth rate.
Let's find out our input variables for this problem. We have the final value = 350.0\$ initial value = 100.0\$ investment period = 10 years (2022 - 2012);
```bash dhandho cagr 350 100 10
0.1334616 # 13.34% ```
The anual compounded growth rate for the investment is 13.34%.