I am VERY NEW to all this industry, so I apologize in advance if my question is too simple.
I am given the formula to calculate the compounded rate, where Ri is the effective rate and k is the compounding period.
If I understood correctly from this source:
GREEK CAPITAL LETTER PI means a product in my formula, k = compounding period (days), i = 1 means that I start from 1 go till k.
Does it mean that my formula in a programming language should be (for instance):
rate = 10%
k = 100
Then I will have:
(1 * 2 * 3 ... * 99 * 100 * (1 + 0.1/360) - 1) * 360/100
How the initial formula above is different from this general formula
Thanks!


