budgeting project proposal
play

Budgeting Project Proposal Dakota Wixom Quantitative Finance - PowerPoint PPT Presentation

DataCamp Introduction to Financial Concepts in Python INTRODUCTION TO FINANCIAL CONCEPTS IN PYTHON Budgeting Project Proposal Dakota Wixom Quantitative Finance Analyst DataCamp Introduction to Financial Concepts in Python Project Proposal


  1. DataCamp Introduction to Financial Concepts in Python INTRODUCTION TO FINANCIAL CONCEPTS IN PYTHON Budgeting Project Proposal Dakota Wixom Quantitative Finance Analyst

  2. DataCamp Introduction to Financial Concepts in Python Project Proposal Your budget will have to take into account the following: Rent Food expenses Entertainment expenses Emergency fund You will have to adjust for the following: Taxes Salary growth Inflation (for all expenses)

  3. DataCamp Introduction to Financial Concepts in Python Constant Cumulative Growth Forecast What is the cumulative growth of an investment that grows by 3% per year for 3 years? In [1]: import numpy as np In [2]: np.cumprod(1 + np.repeat(0.03, 3)) - 1 Out [2]: array([ 0.03, 0.0609, 0.0927])

  4. DataCamp Introduction to Financial Concepts in Python Forecasting Values from Growth Rates Compute the value at each point in time of an initial $100 investment that grows by 3% per year for 3 years? In [1]: import numpy as np In [2]: 100*np.cumprod(1 + np.repeat(0.03, 3)) Out [2]: array([ 103, 106.09, 109.27])

  5. DataCamp Introduction to Financial Concepts in Python INTRODUCTION TO FINANCIAL CONCEPTS IN PYTHON Let's build it!

  6. DataCamp Introduction to Financial Concepts in Python INTRODUCTION TO FINANCIAL CONCEPTS IN PYTHON Net Worth and Valuation in Your Personal Financial Life Dakota Wixom Quantitative Finance Analyst

  7. DataCamp Introduction to Financial Concepts in Python Net Worth Net Worth = Assets - Liabilities = Equity This is the basis of modern accounting A point in time measurement

  8. DataCamp Introduction to Financial Concepts in Python Valuation NPV(discount rate, cash flows) Take into account future cash flows, salary and expenses Adjust for inflation

  9. DataCamp Introduction to Financial Concepts in Python Reaching Financial Goals Saving will only earn you a low rate of return Inflation will destroy most of your savings over time if you let it The best way to combat inflation is to invest

  10. DataCamp Introduction to Financial Concepts in Python The Basics of Investing Investing is a risk-reward tradeoff Diversify Plan for the worst Invest as early as possible Invest continuously over time

  11. DataCamp Introduction to Financial Concepts in Python INTRODUCTION TO FINANCIAL CONCEPTS IN PYTHON Let's simulate it!

  12. DataCamp Introduction to Financial Concepts in Python INTRODUCTION TO FINANCIAL CONCEPTS IN PYTHON The Power of Time and Compound Interest Dakota Wixom Quantitative Finance Analyst

  13. DataCamp Introduction to Financial Concepts in Python The Power of Time Goal: Save $1.0 million over 40 years. Assume an average 7% rate of return per year. In [1]: import numpy as np In [2]: np.pmt(rate=((1+0.07)**1/12 - 1), nper=12*40, pv=0, fv=1000000) Out [2]: -404.61 What if your investments only returned 5% on average? In [1]: import numpy as np In [2]: np.pmt(rate=((1+0.05)**1/12 - 1), nper=12*40, pv=0, fv=1000000) Out [2]: -674.53

  14. DataCamp Introduction to Financial Concepts in Python The Power of Time Goal: Save $1.0 million over 25 years. Assume an average 7% rate of return per year. In [1]: import numpy as np In [2]: np.pmt(rate=((1+0.07)**1/12 - 1), nper=12*25, pv=0, fv=1000000) Out [2]: -1277.07 What if your investments only returned 5% on average? In [1]: import numpy as np In [2]: np.pmt(rate=((1+0.05)**1/12 - 1), nper=12*40, pv=0, fv=1000000) Out [2]: -1707.26

  15. DataCamp Introduction to Financial Concepts in Python Inflation Adjusting Assume an average rate of inflation of 3% per year In [1]: import numpy as np In [2]: np.fv(rate=-0.03, nper=25, pv=-1000000, pmt=0) Out [2]: 466974.70

  16. DataCamp Introduction to Financial Concepts in Python INTRODUCTION TO FINANCIAL CONCEPTS IN PYTHON Let's practice!

  17. DataCamp Introduction to Financial Concepts in Python INTRODUCTION TO FINANCIAL CONCEPTS IN PYTHON Financial Concepts in Your Daily Life Dakota Wixom Quantitative Finance Analyst

  18. DataCamp Introduction to Financial Concepts in Python Congratulations The Time Value of Money Compound Interest Discounting and Projecting Cash Flows Making Rational Economic Decisions Mortgage Structures Interest and Equity The Cost of Capital Wealth Accumulation

  19. DataCamp Introduction to Financial Concepts in Python INTRODUCTION TO FINANCIAL CONCEPTS IN PYTHON Congratulations!

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend