Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Need An Investment Calculator
Message
 
To
19/06/2006 12:47:15
Dragan Nedeljkovich (Online)
Now officially retired
Zrenjanin, Serbia
General information
Forum:
Politics
Category:
Other
Miscellaneous
Thread ID:
01129985
Message ID:
01130022
Views:
27
>>>Maybe. For example, if I invest $1000 at .08 percent, I get $1080.00
>>>
>>>Is this formula correct?
>>>
>>>
>>>CLEAR
>>>
>>>LOCAL nAmount, nPercent, nTotalMonths, nEarning, nTotVal
>>>
>>>nAmount      = 1000
>>>nPercent     = .08
>>>nTotalMonths = 12
>>>nEarning     = 0
>>>nTotVal      = 0
>>>
>>>FOR nMonth = 1 TO nTotalMonths
>>>
>>>  nEarning = nAmount * nPercent
>>>  nTotVal = nAmount + nEarning
>>>
>>>ENDFOR
>>>
>>>? nTotVal
>>>
>>>
>>>Correct?
>>>
>>
>>It depends on what is the "percent" you are talking about. There are simple interest, compound interest (which depends on the period when the base amount is recalculated), APY, etc...
>>
>>In your example you use the compound interest where the base amount is recalculated ones per month.
>
>No he doesn't, because he's calculating nEarning from the original nAmount, not from nTotVal. And that's all the difference.

Agree. It is simple interest compounded monthly.
Previous
Reply
Map
View

Click here to load this message in the networking platform