Skip to content

Commit f1b1de7

Browse files
authored
Merge pull request #397 from itsmpython/Web_Scraper_1.0
Created Investment_rules automation scripts
2 parents 1719912 + ca78b55 commit f1b1de7

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed

INVESTMENT_RULES/README.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# List of python scripts that auomates calculation of really handful of Investment Rules.
2+
3+
## 1. What Is the Rule of 72?
4+
The Rule of 72 is a simple way to determine how long an investment will take to double given a fixed annual rate of interest. Dividing 72 by the annual rate of return gives investors a rough estimate of how many years it will take for the initial investment to duplicate itself.
5+
6+
### Key takeaways
7+
The Rule of 72 is not precise, but is a quick way to get a useful ballpark figure.
8+
For investments without a fixed rate of return, you can instead divide 72 by the number of years you hope it will take to double your money. This will give you an estimate of the annual rate of return you’ll need to achieve that goal.
9+
The calculation is most accurate for rates of return of about 5% to 10%.
10+
For more precise outcomes, divide 69.3 by the rate of return. While not as easy to do in one’s head, it is more accurate.
11+
12+
### How the Rule of 72 Works
13+
For example, the Rule of 72 states that $1 invested at an annual fixed interest rate of 10% would take 7.2 years ((72 ÷ 10) = 7.2) to grow to $2.
14+
15+
For more details refer https://www.investopedia.com/ask/answers/what-is-the-rule-72/
16+
17+
## 2. Real Rate of Return adjusted to Inflation
18+
You know that investments have to do more than keep pace with inflation for you to build wealth. As Golden says,
19+
“A dollar today is not worth a dollar in the future.” But how do you determine what your investment return is after inflation?
20+
This equation helps you compute your real return, or your return adjusted for inflation.
21+
22+
For example, if an investment returns 8 percent, and inflation is 3 percent, this is how you’d set up the problem:
23+
[ ( 1.08 ÷ 1.03 ) - 1 ] x 100 = 4.85 percent real return
24+
25+
“You’re losing to inflation every year,” says Charles Sachs, a wealth manager at Kaufman Rossin Wealth in Miami.
26+
“Long term, inflation runs about 3 percent. So your money buys half as much in 20 years.”
27+
28+
Learn more here--> https://finance.yahoo.com/news/6-investment-formulas-financial-success-172744221.html
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Inflation_Adjsted_Return_Summary = """
2+
Learn More about this investment rule in README.md located in INVESTMENT_RULES folder**
3+
"""
4+
5+
print(Inflation_Adjsted_Return_Summary)
6+
7+
# Get the Avg Investment Rate of Return and Avg Inflation Rate
8+
invest_rate_return = float(input("What is expected average Rate of Return (don't use % sign): "))/100
9+
avg_inflration_rate = float(input("What is your avg inflation rate?: "))/100
10+
11+
12+
def inflation_adjusted_return(invest_rate_return, avg_inflration_rate):
13+
# Simple formula is : ((1 + Investment return percentage) / (1 + Inflation rate percentage) - 1) x 100
14+
inflration_adjusted_return_val = (((1 +invest_rate_return )/(1 +avg_inflration_rate)) - 1) * 100
15+
return inflration_adjusted_return_val
16+
17+
real_return = round(inflation_adjusted_return(invest_rate_return, avg_inflration_rate),2)
18+
print(f"Your Actual Rate of Return adjusted to the inflation is {real_return}%. Not {invest_rate_return*100}% ")

INVESTMENT_RULES/rule_of_72.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Get Aannual fixed interest rate
2+
fixed_interest_rate = input("Please enter the Annual Fixed interest rate (don't use % sign): ")
3+
4+
5+
def calculate_time_taken_to_double(fixed_interest_rate):
6+
# A simple formula calulate the time it takes to double an investment.
7+
time_taken = 72/float(fixed_interest_rate)
8+
return time_taken
9+
10+
time_taken_to_double = round(calculate_time_taken_to_double(fixed_interest_rate),2)
11+
print(f"Your investment will take {time_taken_to_double} year(s) to double!")

0 commit comments

Comments
 (0)