Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
calculation
#1
I want to make a script/program that makes the following:

enter end price,
enter starting price
enter number of years

and calculate - what is the average percentage of the overall years ? (like - how much percentage did the stock gained every year)...

for example - you got a stock XYZ - it started at 10$, ended at 100$ - after 10 years...(that's a 1000% gain). what i'm having trouble with is making the formula...cuz the gain, percentage wise - is exponential...it means the stock made less than 100% a year...

you know what i mean ?
Reply
#2
I'm not a math wiz but, I think you will take year divided by end price (e.g. 10/100 = 0.1% gain per year) Hope it helps.
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts


Reply
#3
Output:
(1 + year_return) ** num_years = end_price/start_price
note the artificial assumptions - e.g. the exact number of years.
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#4
buran, didn't quite get (1 + year_return)
Reply
#5
year_return is the average return per year in percent
Output:
year0 - start_price year1 - start_price*(1+year1_return) year2 - start_price*(1+year1_return)*(1+year2_return) .... year10 - start_price*(1+year1_return)*(1+year2_return)*...*(1+year10_return) == end_price
now, you want average return per year, so
start_price*(1+year_return)**n = end_price
(1+year_return)**n = end_price/start_price

now, calculate year_return :-)
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#6
can you give me an example ?

i'll try to give an example myself of what i mean:

suppose i have a stock trading at 10$, and every year it makes 30%, that means:

year0 - 10$
year1 - 13$
year2 - 16.9$
year3 - 21.97$

and so on...

what i wanna have is this hindsight of fixed percentage (when i give the parameters)
Reply
#7
dude, come on, I gave you the formula, you have to write 3 lines of code.
I understand perfectly what you ask. year_return is the fixed percentage that you are looking for.
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#8
hehe, well i'm just not so good at math...

do i have to make a while loop ?
or a for loop ?

hehe, i feel so dumb
Reply
#9
no loops at all

are you really telling me you cannot find year_return from
Output:
(1 + year_return) ** num_years = end_price/start_price
where you know num_years, end_price and start_price?

with your example
Output:
(1+year_return) ** 3 = 21.97 / 10
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#10
well, i went through the formula you gave me,
but what if at the end of the formula, instead of having end price - to have year_return,

how would that look ?

well what i mean is that year_return has to be isolated...

and i'm illiterate in math

well, i'd guess that the opposite of 'to the power of' is a root,

but i have no idea how to rearrange the components,

i trade stocks for a living, i've been trading for the last 19 years, since age 17,
but quit school early, like - i have 9 grades accomplished,

so all this math stuff is beyond me, you don't need much math in trading, just the simple arithmetic,

what can i do
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020