Actually I was reading a blog on how to calculate the cumulating return
of a stock for each day.
The formula that was described in the blog to calculate cumulating return
was
(1 + TodayReturn) * (1 + Cumulative_Return_Of_Previous_Day) - 1
, but still I am not able to calculate the cumulative return that was provided on it.
Can someone please make this clear that how is cumulative return
has been calculated in the table given below. This would be a lot of help.
Thanks in advance.
| Days | Stock Price | Return | Cumulative Return|
---------------------------------------------------
| Day 1 | 150 | | |
| Day 2 | 153 | 2.00 % | 2.00 % |
| Day 3 | 160 | 4.58 % | 6.67 % |
| Day 4 | 163 | 1.88 % | 8.67 % |
| Day 5 | 165 | 1.23 % | 10.00 % |
---------------------------------------------------