Python 金融概念入门
Dakota Wixom
Quantitative Finance Analyst
$$ \text{回报(%增幅)} = \frac{v_{t_2} - v_{t_1}}{v_{t_1}} = r$$
$$ \frac{\$11,000 - \$10,000}{\$10,000} * 100 = \text{年回报10\%} $$
$$ v_{t_2} = v_{t_1} * (1 + r) $$
$$ \text{\$10,000} * (1 + \frac{10}{100}) = \text{\$11,000} $$
$$ \text{投资价值} = v_{t_0}*(1 + r)^t $$
若增长率 $r$ 为负,投资会随时间贬值(缩减)。
$$ df = \frac{1}{(1 + r)^t} $$
$$ v = fv*df $$
$$ \text{投资价值} = v_{t_0}*(1 + \frac{r}{c})^{t*c} $$
考虑$1,000投资,年回报10%,按季度复利(每3个月,共4次/年):
$$ \$1,000*( 1 + \frac{0.10}{4} )^{1*4} = \$1,103.81 $$
与不复利比较:
$$ \$1,000*( 1 + \frac{0.10}{1} )^{1*1} = \$1,100.00 $$
注意因季度复利多出的$3.81?
30年按季度复利:
$$ \$1,000*(1 + \frac{0.10}{4})^{30*4} = \$19,358.15 $$
30年按年复利:
$$ \$1,000*(1 + \frac{0.10}{1})^{30*1} = \$17,449.40 $$
季度复利在30年内多出$1,908.75
Python 金融概念入门