<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ilona Codes</title>
    <description>The latest articles on DEV Community by Ilona Codes (@ilonacodes).</description>
    <link>https://dev.to/ilonacodes</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F127033%2F7ac75dae-72a4-4dc7-83b7-7145a6ead1ac.png</url>
      <title>DEV Community: Ilona Codes</title>
      <link>https://dev.to/ilonacodes</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ilonacodes"/>
    <language>en</language>
    <item>
      <title>Bitcoin Profit Calculator For Developers</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Fri, 15 Jan 2021 09:18:09 +0000</pubDate>
      <link>https://dev.to/ilonacodes/bitcoin-profit-calculator-for-developers-c44</link>
      <guid>https://dev.to/ilonacodes/bitcoin-profit-calculator-for-developers-c44</guid>
      <description>&lt;p&gt;What would your profit be today if you invested in Bitcoin years or a few months ago?&lt;/p&gt;

&lt;p&gt;Bitcoin is on the rise right now, and many investors and venture capital firms are betting that it is here to stay. It's the first cryptocurrency that became the leading player in the crypto market.&lt;/p&gt;

&lt;p&gt;A bitcoin investment is any investment carried out to make more bitcoin or more funds in return. You can &lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/" rel="noopener noreferrer"&gt;learn more about investing for developers through my newsletters (+bonus: Top-15 Cash-Freeing Tips Cheat Sheet).&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Bitcoin is a system for securely buying, storing, and using money digitally as a general concept. Once you have Bitcoins stored in a Bitcoin wallet, you can use them as currency or an asset like gold.&lt;/p&gt;

&lt;p&gt;Bitcoin investment comes in various forms:&lt;/p&gt;

&lt;p&gt;‣ &lt;strong&gt;Trading:&lt;/strong&gt; buying at low prices and selling cryptos at higher prices. It involves learning skills like trading in forex, which helps inform you of bitcoin's next rising or falling moves.&lt;/p&gt;

&lt;p&gt;‣ &lt;strong&gt;Buying and Holding.&lt;/strong&gt; It's a famous approach with the bull run in 2017. It means buying Bitcoin for keeps and waiting to sell after an estimated time when the price must have gone above the region at which you purchased it.&lt;/p&gt;

&lt;p&gt;‣ &lt;strong&gt;Mining.&lt;/strong&gt; It's a method that deviates away from the traditional purchasing norm. Basically, it's solving mathematical transactional problems on the blockchain and getting paid in return for these services. You just need to provide a CPU or GPU to run these programs.&lt;/p&gt;

&lt;p&gt;If you wonder how much amount of profit you would have made if you have invested in Bitcoins earlier, here is a calculator for that:&lt;/p&gt;

&lt;p&gt;&lt;iframe src="https://codesandbox.io/embed/serene-hertz-l53fx"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;It works on a quite simple formula:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;price&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;btcPrices&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;month&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;
  &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nx"&gt;price&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nf"&gt;invalidMonthRange&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;

  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;lastPrice&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;btcPrices&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;lastMonth&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

  &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;`Price for month &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;month&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt; was &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;price&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;`While the price for the last month was: &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;lastPrice&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;roi&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;lastPrice&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nx"&gt;price&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="nx"&gt;price&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;grossProfit&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;roi&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;amount&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

  &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;`Gross profit now would be: &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;grossProfit&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;`ROI: &lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;roi&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

  &lt;span class="nf"&gt;setGrossProfit&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;grossProfit&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="nf"&gt;setROI&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;roi&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In the example of the future returns, you see the hypothetical growth of Bitcoin during 2021 and how your initial investment would be growing at the average growth percent per year based on the historic value of Bitcoin.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Bitcoin annual growth is the highest form of speculation and may not be suitable for all. So, you should be careful and not bet a significant amount on such activities.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Bitcoin is a currency. Currencies store value. Bitcoin's stability as a currency is a whole other topic.&lt;/p&gt;

&lt;p&gt;If you are up to trade Bitcoin, you can hedge or speculate on getting more returns. Such as was popular with gold or oil back then.&lt;/p&gt;

&lt;p&gt;I have nothing against Bitcoin speculating or hedging if you are profitable in the end. That's why forex exists.&lt;/p&gt;

&lt;p&gt;The problem today to consider Bitcoin as a valuable investment is that unlike stocks, there are no tied/tangible assets to it; Bitcoin doesn't pay dividends out. Yet, in 2021 there are no government or financial institutions behind it—no FDIC insurance.&lt;/p&gt;

&lt;p&gt;&lt;iframe class="tweet-embed" id="tweet-1345927062964621323-515" src="https://platform.twitter.com/embed/Tweet.html?id=1345927062964621323"&gt;
&lt;/iframe&gt;

  // Detect dark theme
  var iframe = document.getElementById('tweet-1345927062964621323-515');
  if (document.body.className.includes('dark-theme')) {
    iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1345927062964621323&amp;amp;theme=dark"
  }



&lt;/p&gt;

&lt;p&gt;On the other hand, in some stock markets, you can trade-in "short-positions" and vice versa "long-positions." It means to sell first at a premium and then to buy at a lower price. This approach is mainly used in commodity trading (gold, oil, diamonds) on futures markets. Relating to the rising price of Bitcoin, now it's also possible to trade in the long term in the weeks to months, months to years. For example, buying at a bargain price for several prices and sell after the price increases.&lt;/p&gt;

&lt;p&gt;In fact, its exchange rate against the dollar attracts potential investors and traders interested in cryptocurrency plays. Many investors believe that digital currency is the future. Those who endorse it think it facilitates a much faster, no-fee payment system for transactions worldwide.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Investing in Bitcoin is highly risky! Investors need to be aware of it before purchasing it. You can find more extensive information on the original cryptocurrency all over the web today.&lt;/p&gt;

&lt;p&gt;It takes time and effort to understand how bitcoin works. Bitcoins are limited, and as time goes on, they become harder to mine. Anyone can send bitcoin from anywhere in the world. No bank can block or close your accounts and payments yet. That's why Bitcoin may be a great financial tool for "money" washing, that's illegal!&lt;/p&gt;

&lt;p&gt;If you are interested in Bitcoin investing, the prudent approach is to do your research and discover whether you are willing to enter an emerging digital asset market with no precedent.&lt;/p&gt;

&lt;p&gt;Making small investments is a great way to start and learn how to interact with bitcoin-wallets without overexposing yourself and your money to the market's volatility.&lt;/p&gt;

&lt;p&gt;The general narrative around Bitcoin that has been molded over the years is that of digital gold. Its insurance rate is controlled by its mining difficulty and decentralized network, which gives advantages over fiat currencies, so your investments supposedly won't be diluted through inflation or devaluation.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by the Author constitutes an investment recommendation, nor should any data or content published by the Author be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;_ Photo by Karolina Grabowska from Pexels_&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
      <category>showdev</category>
    </item>
    <item>
      <title>How to Manage Your Investment Portfolio Like a Pro</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Fri, 08 Jan 2021 10:31:03 +0000</pubDate>
      <link>https://dev.to/ilonacodes/how-to-manage-your-investment-portfolio-like-a-pro-3p19</link>
      <guid>https://dev.to/ilonacodes/how-to-manage-your-investment-portfolio-like-a-pro-3p19</guid>
      <description>&lt;p&gt;Are you sure you need to hire a professional to manage your finances?&lt;/p&gt;

&lt;p&gt;In 2021, I believe it's not necessary, especially for such tech-savvy and smart people like software developers and people in tech.&lt;/p&gt;

&lt;p&gt;With digital tools and apps, the right amount of time, and some dedicated financial education, you could be able to do it yourself.&lt;/p&gt;

&lt;p&gt;Suppose you are willing to spend 8-12 a month learning about investing and associated asset allocation. In that case, you will probably be beating most recommendations from financial advisers within a few years or even several months.&lt;/p&gt;

&lt;p&gt;Nowadays, &lt;strong&gt;you as an investor can manage your personal finances and investments better than anyone&lt;/strong&gt; else who you will pay a commission on that.&lt;/p&gt;

&lt;p&gt;The best individual investors can gain lot of experience and spot the best moves in the world and local markets. Here are the best working tips for your investment portfolio management.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Build a margin of safety into your investments
&lt;/h2&gt;

&lt;p&gt;Benjamin Graham, the father of modern security analysis, outlines in his investing philosophy the importance of the "margin of safety" to protect your investment portfolio.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"The margin of safety is dependent on the price paid. It will be large at one price, small at some other price, and nonexistent at some higher price."––&lt;a href="https://amzn.to/34ANS0p"&gt;Benjamin Graham, The Intelligent Investor&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That means you have to ensure your long-term investment strategy by only &lt;strong&gt;investing in companies that you think are trading at 30-40% less than what they are worth:&lt;/strong&gt; which are undervalued on the market at the current time according to your financial analysis.&lt;/p&gt;

&lt;p&gt;It's critical to make sure you are getting a fair deal.&lt;/p&gt;

&lt;p&gt;How much you are willing to pay depends on various factors, but that price will determine your return rate.&lt;/p&gt;

&lt;p&gt;Good investors usually have a habit of extrapolating recent events into the future.&lt;/p&gt;

&lt;p&gt;Here is an example 👇&lt;/p&gt;

&lt;p&gt;The company announced that it cuts two thousand employees in the next months due to automation processes. It's hot news for day traders that can provoke speculation for the company stock in the following days/weeks. Day traders might start shorting stock shares in the market and lowering its price. In contrast, it would be an excellent opportunity for the individual investor to buy more stock shares at a low price. In the long run, investors understand that automation is good for business.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Think long and hard before selling
&lt;/h2&gt;

&lt;p&gt;The majority of literature on finance and investment concerns answering the questions: "when to buy a stock and how to get its best deal." From the author's view, it is supposed that the "selling" time is self-explanatory by default. In reality, &lt;strong&gt;the right selling time is like that much important as the right timing for buying.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The key reasons why you might consider selling your assets:&lt;/p&gt;

&lt;p&gt;‣ &lt;strong&gt;To adjust your portfolio:&lt;/strong&gt; if it became unbalanced or inappropriate for your current or long-term investing goals. For example, you notice that your most capital invested in one sector and not diversified momentarily.&lt;/p&gt;

&lt;p&gt;‣ &lt;strong&gt;To free up your capital&lt;/strong&gt; - turn it into cash: usually, it happens when your need to finance a new business, mortgage down payments, or payout to yourself.&lt;/p&gt;

&lt;p&gt;‣ &lt;strong&gt;To sell less - to buy more:&lt;/strong&gt; mainly, when the market is going down during the crisis, you can sell your securities at a fair price, if you have forecasted the market crash, and then buy the same but at a lower cost and with a more amount. You can also do that if you insured your investment with an option contract.&lt;/p&gt;

&lt;p&gt;In my opinion, the most significant losses come from holding securities and not continually looking at finding better alternatives or strategies to invest in or re-balance your portfolio.&lt;/p&gt;

&lt;p&gt;However, if you react in only "selling" mode without a plan after a market panic or a bad quarter, you can damage your investment portfolio and face significant losses.&lt;/p&gt;

&lt;p&gt;In this case, a bit of stoicism can strengthen your portfolio and your skills as an investor because "selling" is as vital as "buying"! Make sure it aligns with your investing strategy, due diligence research, and financial goals.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Do research before buying any securities
&lt;/h2&gt;

&lt;p&gt;Analyzing securities like stocks helps individual investors find the best investment opportunities.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The goal is to find stocks trading for a discount to their current value–undervalued stocks, to capture market-beating returns in the future.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you are interested in learning more about finance, investing, and analysis, you can &lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/"&gt;join my readership and also get your free bonus: Top-15 tips to free more cash to start investing monthly.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Traditionally, professional portfolio managers perform specific steps in the following sequence:&lt;/p&gt;

&lt;p&gt;‣ They perform their &lt;a href="https://dealroom.net/faq/due-diligence-meaning"&gt;due diligence&lt;/a&gt; on several securities like stocks and put them on their watchlist.&lt;/p&gt;

&lt;p&gt;‣ Then, they screen this stock list for certain features of their criteria–benchmark.&lt;/p&gt;

&lt;p&gt;‣ Next, they rank the screened stocks by decreasing order according to their due diligence analysis.&lt;/p&gt;

&lt;p&gt;‣ Also, they size portfolios by setting the diversification in terms of how many ranks they will include in portfolios.&lt;/p&gt;

&lt;p&gt;‣ And they weight portfolios optimally to maximize treturns, minimize drawdowns or adjust reward/risk ratio, or to another investment objective.&lt;/p&gt;

&lt;p&gt;‣ Finally, they optimize hedging to maximize investment objective and holding period to maximize investment objective.&lt;/p&gt;

&lt;p&gt;Solid due diligence analysis can help you make smart decisions. Still, there is no 100% working way to analyze stocks. That's why you need to find companies that you believe are good values and might be great long-term businesses that will likely deliver strong returns in the future.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Minimize admin fees and taxes
&lt;/h2&gt;

&lt;p&gt;Watch out for them while investing!&lt;/p&gt;

&lt;p&gt;There are lots of fees to look out for, and many of them are just flat-out confusing.&lt;/p&gt;

&lt;p&gt;Overlooking them was one of my mistakes I made earlier as I started my investing journey on my own.&lt;/p&gt;

&lt;p&gt;More information on this topic you can find in my post: &lt;a href="https://ilonacodes.com/blog/fatal-mistakes-that-developers-should-avoid-when-investing/"&gt;"Fatal Mistakes That Developers Should Avoid When Investing"&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Look for opportunities
&lt;/h2&gt;

&lt;p&gt;There are investment opportunities all around us.&lt;/p&gt;

&lt;p&gt;Finding the right one for you depends on where you feel most comfortable putting your money.&lt;/p&gt;

&lt;p&gt;Look at your risk tolerance, the amount you want to invest, and your timeline for investment. Also, keep your eye on trends that might be worth to invest today that would pay off in the future.&lt;/p&gt;

&lt;p&gt;Start by investigating new investment opportunities all the time. Then you decide if in your existing portfolio a better alternative is available.&lt;/p&gt;




&lt;h2&gt;
  
  
  Bottom Line
&lt;/h2&gt;

&lt;p&gt;If you choose to DIY investment management, be sure you understand investment concepts such as asset allocation, portfolio rebalancing, and risk preference.&lt;/p&gt;

&lt;p&gt;Try to rebalance your investments at least once per year to ensure your investment portfolio has a mix you want.&lt;/p&gt;

&lt;p&gt;It's helpful for beginner-investors to minimize the number of investment accounts and holdings, so it's easier to track what you own and monitor your cash flow.&lt;/p&gt;

&lt;p&gt;Trade infrequently and be mindful of the fund, bank, brokerage management fees — lean towards lower-fee institutions.&lt;/p&gt;

&lt;p&gt;Always seek ways to simplify your life and finances by investing in assets and securities, generating passive income for you first.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by IlonaCodes constitutes an investment recommendation, nor should any data or content published by IlonaCodes be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Affiliate Disclosure: As an Amazon Associate, I may earn commissions from qualifying purchases from Amazon.com.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Photo by Wiredsmart from Pexels&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>motivation</category>
      <category>developer</category>
      <category>investing</category>
    </item>
    <item>
      <title>Time Value of Money in Finance and Investment For Software Developers</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Sat, 02 Jan 2021 09:53:40 +0000</pubDate>
      <link>https://dev.to/ilonacodes/time-value-of-money-in-finance-and-investment-for-software-developers-1fh</link>
      <guid>https://dev.to/ilonacodes/time-value-of-money-in-finance-and-investment-for-software-developers-1fh</guid>
      <description>&lt;p&gt;Benjamin Franklin once said: &lt;em&gt;"Remember that time is money."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The Time Value of Money (TVM) just means that money in your hand right now is worth more than the same amount of money that you will receive in the future.&lt;/p&gt;

&lt;p&gt;The idea is that money available at present is more worth than the same amount in the future. The core principle of finance:&lt;/p&gt;

&lt;p&gt;‣ Invested capital can earn interest&lt;/p&gt;

&lt;p&gt;‣ Any amount of money is worth more the sooner it's received.&lt;/p&gt;

&lt;p&gt;The underlying fundamentals of the time value of money are often used to &lt;a href="https://ilonacodes.com/blog/how-developers-can-supercharge-their-savings/"&gt;value investments like stocks, bonds, credits.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let's search for equivalent amounts of money on time:&lt;/p&gt;

&lt;p&gt;Would you prefer to get $1000 today or $1000 one year from now? – I bet that you would say $1000 today.&lt;/p&gt;

&lt;p&gt;What about the choice between $1000 today or $1001 next year? – I am pretty sure that you would still prefer the $1000 today. Not the last reason is inflation because it will bring up that extra $1 or more. So you might be even worse off. It's better to take the $1000 now and not wait a year for just $1.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"A bird in the hand is worth 2 in the bush."–Proverb&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Let us make other more common examples of cash flow value today vs. in the future.&lt;/p&gt;

&lt;p&gt;If you receive $200 per year for the next six years, &lt;strong&gt;what is the net present value if the current inflation rate is 3%:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;pandas&lt;/span&gt; &lt;span class="k"&gt;as&lt;/span&gt; &lt;span class="n"&gt;pd&lt;/span&gt;
&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;numpy&lt;/span&gt; &lt;span class="k"&gt;as&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;
&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;matplotlib.pyplot&lt;/span&gt; &lt;span class="k"&gt;as&lt;/span&gt; &lt;span class="n"&gt;plt&lt;/span&gt;

&lt;span class="n"&gt;r&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mf"&gt;0.03&lt;/span&gt;
&lt;span class="n"&gt;cash_flow&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;pd&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;DataFrame&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;&lt;span class="s"&gt;'Year'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;3&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;4&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;6&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
  &lt;span class="s"&gt;'Cash'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;]})&lt;/span&gt;
&lt;span class="c1"&gt;# PV (Present Value) = Cash (at period 1) / (1 + r)^n
&lt;/span&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'PV'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'Cash'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mf"&gt;1.0&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;r&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;**&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'Year'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="n"&gt;npv&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'PV'&lt;/span&gt;&lt;span class="p"&gt;].&lt;/span&gt;&lt;span class="nb"&gt;sum&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;round&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Year&lt;/th&gt;
&lt;th&gt;Cash&lt;/th&gt;
&lt;th&gt;PV&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;200&lt;/td&gt;
&lt;td&gt;194.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;200&lt;/td&gt;
&lt;td&gt;189.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;200&lt;/td&gt;
&lt;td&gt;183.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;200&lt;/td&gt;
&lt;td&gt;178.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;200&lt;/td&gt;
&lt;td&gt;173.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;200&lt;/td&gt;
&lt;td&gt;167.0&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;p&gt;The earned $ in the future will not be worth as much as one made in the present—this discount rate element of NPV (Net Present Value)–the difference between the present value of cash and PV (Present Value) over a period of time.&lt;/p&gt;

&lt;p&gt;According to your expectation, in 6 years, you will get $1200, but their worth (NPV) at that time would be:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;'NPV is'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nb"&gt;round&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;npv&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;

&lt;span class="c1"&gt;# NPV is 1083.0
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;As you see, $1200 in the present is $1083 in the six years with the discount (inflation rate in our case) of 3%.&lt;/p&gt;

&lt;p&gt;We can also use the same approach to &lt;strong&gt;calculate the NPV of uneven cash flows yearly,&lt;/strong&gt; receiving different cash amounts with the same discount (inflation) rate of 3%:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Calculate NPV of uneven cash flows
&lt;/span&gt;
&lt;span class="n"&gt;cash_flow&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;pd&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;DataFrame&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;&lt;span class="s"&gt;'Year'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;3&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;4&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;6&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
  &lt;span class="s"&gt;'Cash'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;150&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;200&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;250&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;350&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;400&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;450&lt;/span&gt;&lt;span class="p"&gt;]})&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;#&lt;/th&gt;
&lt;th&gt;Year&lt;/th&gt;
&lt;th&gt;Cash&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;150&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;200&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;250&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;300&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;350&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;400&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;p&gt;Looking at the table, you are expecting to get $1800 in total in the six years. You are right, you will have this amount, but with the worth of:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;r&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mf"&gt;0.03&lt;/span&gt;
&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'PV'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'Cash'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;r&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;**&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'Year'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="n"&gt;npv&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'PV'&lt;/span&gt;&lt;span class="p"&gt;].&lt;/span&gt;&lt;span class="nb"&gt;sum&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;'NPV is'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nb"&gt;round&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;npv&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;

&lt;span class="c1"&gt;# NPV is 1596.0
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Yes, your present $1800 will be $1596 in the near future of 6 years.&lt;/p&gt;




&lt;p&gt;Let's consider other hands-on examples of the time-value of money:&lt;/p&gt;

&lt;p&gt;Often we have to calculate &lt;strong&gt;the present value of equal payments during determined X years.&lt;/strong&gt; A good example is a lottery jackpot––$1,000,000 payout. Usually, there are two options for how the winner can receive his money:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Receive five equal payments of $200,000 during the next five years&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The lump sum of $940000 (because of 6% of the bank interest rate on the deposit)&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;At first glance, nobody wants to lose $60000 and would prefer to wait these years while receiving $200,000 yearly till the end of the payout period. After all, $1,000,000 is more than $940,000.&lt;/p&gt;

&lt;p&gt;Precisely, we need to think of calculating the net present value to make the right decision. In the financial terminology, it would be called: calculating &lt;a href="https://financeformulas.net/Present_Value_of_Annuity.html"&gt;the present value of a finite annuity.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let's see how much worth would be getting your $1,000,000 through 5 equal payments of $200,000 and five years from now with the bank interest rate on deposit of 6%:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;payment&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;200000&lt;/span&gt;
&lt;span class="n"&gt;time&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;
&lt;span class="n"&gt;rate&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mf"&gt;0.06&lt;/span&gt;
&lt;span class="n"&gt;cash_flow&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;pd&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;DataFrame&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;&lt;span class="s"&gt;'Period'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;arange&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;6&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
 &lt;span class="s"&gt;'PMT'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;payment&lt;/span&gt;&lt;span class="p"&gt;})&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;#&lt;/th&gt;
&lt;th&gt;Period&lt;/th&gt;
&lt;th&gt;PMT&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;200000&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;200000&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;200000&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;200000&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;200000&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;p&gt;So far, we have created a &lt;em&gt;cash_flow&lt;/em&gt; table as we did in the previous tables above to preview the cash flow better.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'PV'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'PMT'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;rate&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;**&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'Period'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="n"&gt;npv&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'PV'&lt;/span&gt;&lt;span class="p"&gt;].&lt;/span&gt;&lt;span class="nb"&gt;sum&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;'NPV is '&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nb"&gt;round&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;npv&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;

&lt;span class="c1"&gt;# NPV is 865895.0
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;$865,895 is the net present value of five equal payments and less than $960,000 offered. Therefore, it's better to take the lump sum payment of $960,000 and deposit it in the bank once.&lt;/p&gt;

&lt;p&gt;As I mentioned before, in the finance world, the last calculation called: &lt;strong&gt;the present value of a finite annuity,&lt;/strong&gt; the more advanced and often applicable concept to investors, especially to real estate investors, is the calculation of &lt;a href="https://financeformulas.net/Present_Value_of_Growing_Annuity.html"&gt;the present value of the finite growing annuity&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;And here is an excellent example to consider for that:&lt;/p&gt;

&lt;p&gt;Let's suppose you own a complex building with apartments. In your case, it means that the tenants pay you fixed rent monthly. To tackle higher inflation, you decide to increase the rent. Basically, the whole building from the finance side looks like an annuity payment that grows at the inflation rate. So that allows us to calculate the present value of those payments now:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Current rent payment is $800&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Growth rate of payments 6%&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Inflation rate of 3%&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Period is 5 years&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;rent_payment&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;800&lt;/span&gt;
&lt;span class="n"&gt;time&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;
&lt;span class="n"&gt;rent_growth&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mf"&gt;0.06&lt;/span&gt;
&lt;span class="n"&gt;inflation_rate&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mf"&gt;0.03&lt;/span&gt;
&lt;span class="n"&gt;cash_flow&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;pd&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;DataFrame&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;&lt;span class="s"&gt;'Year'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;arange&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="mi"&gt;6&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
  &lt;span class="s"&gt;'Cash'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;rent_payment&lt;/span&gt;&lt;span class="p"&gt;})&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;#&lt;/th&gt;
&lt;th&gt;Year&lt;/th&gt;
&lt;th&gt;Cash&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;800&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;800&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;800&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;800&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;800&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;p&gt;The next step is to increase cash flow at the growth rate to beat the inflation:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'Cash'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;rent_payment&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;rent_growth&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;**&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'Year'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;round&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;#&lt;/th&gt;
&lt;th&gt;Year&lt;/th&gt;
&lt;th&gt;Cash&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;800.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;848.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;899.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;853.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;1010.0&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;p&gt;After increasing the rent payment, we need to calculate the present value of cash flow yearly by considering the inflation rate of 3%:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'PV'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'Cash'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;inflation_rate&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;**&lt;/span&gt; &lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s"&gt;'Year'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;round&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;cash_flow&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;#&lt;/th&gt;
&lt;th&gt;Year&lt;/th&gt;
&lt;th&gt;Cash&lt;/th&gt;
&lt;th&gt;PV&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;800.0&lt;/td&gt;
&lt;td&gt;777.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;848.0&lt;/td&gt;
&lt;td&gt;799.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;899.0&lt;/td&gt;
&lt;td&gt;823.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;953.0&lt;/td&gt;
&lt;td&gt;847.0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;1010.0&lt;/td&gt;
&lt;td&gt;871.0&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;p&gt;&lt;strong&gt;If the value of the "Cash" &amp;gt; "PV", then you did everything right as an investor:&lt;/strong&gt; you beat the inflation rate and get "gross" returns from the rent payments. You earn money.&lt;/p&gt;

&lt;h2&gt;
  
  
  Bottom Line
&lt;/h2&gt;

&lt;p&gt;Money has time value due to inflation, deflation, devaluation, etc.&lt;/p&gt;

&lt;p&gt;The present value of money helps investors decide the amount they should invest today to receive a particular amount of money with "Gain" in the future.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Take the PV, NPV, and FV (future value) concepts to apply them to calculate the output from your investment opportunities and get the time value of money at any given time.&lt;/strong&gt; Because a dollar you hold in your hand today is worth more than a dollar you expect to get tomorrow. Mainly because you could invest the dollar you are having now.&lt;/p&gt;




&lt;p&gt;If you want to learn more about finance and investment opportunities in general and today's world, you can become a reader of &lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/"&gt;my newsletter (+bonus: the cheat sheet on how to free extra monthly cash from your dev-salary for investment).&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Learn to invest with confidence!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by IlonaCodes constitutes an investment recommendation, nor should any data or content published by IlonaCodes be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Photo by Morgan Housel on Unsplash&lt;/em&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>motivation</category>
      <category>programming</category>
      <category>finance</category>
    </item>
    <item>
      <title>30 Things I Learned About Investing in 2020</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Mon, 19 Oct 2020 07:46:43 +0000</pubDate>
      <link>https://dev.to/ilonacodes/30-things-i-learned-about-investing-in-2020-3flf</link>
      <guid>https://dev.to/ilonacodes/30-things-i-learned-about-investing-in-2020-3flf</guid>
      <description>&lt;p&gt;Like most software developers and people in tech, I often experience imposter syndrome that reminds me of how little I actually know. For such imposters like me, it’s important to journal my reflections on what I am currently studying: finances and investments. That’s why I wrote my core &lt;strong&gt;“30 Things I learned about finance and investment in 2020.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It’s always a great pleasure to publish such posts online, so not only can my readers find something useful and helpful in them, but also I can cheer myself up during autumn in rainy Berlin and keep myself accountable to learn about the markets and practice investment on-the-go with you.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“To know values is to know the meaning of the market.”—Charles Dow&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If you are still here and curious, what are they about, you can check them below and share your opinion on them with me:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. There is always something new to learn about the markets every day.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As long as you remember that, and stay up to date on their trends and understand them, chances are for better investment returns are high.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. The stock market today is the place where the more the price of a stock’s share increases, the more people want to own it.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Even without the in-depth company stock analysis and just according to breaking news, most beginner investors are willing to buy it, ready to buy their market price or even higher.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Don’t pass on investor relations pages of public companies you are willing to invest in through buying their shares.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Instead, master a company quality research as well! Read, watch, study its public presentations and news from press releases.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Company market cap is too “loud” and overused metric to rely on it only when making an investment decision.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Price to Earnings (P/E) is the #1 fundamental measure that tops all other determining a company’s stock price movement.&lt;/p&gt;

&lt;p&gt;Price to Earnings Ratio (P/E) = Stock Price / Earnings per Share (EPS).&lt;/p&gt;

&lt;p&gt;A higher P/E ratio means investors are willing to pay more for each $ of annual earnings, so you can use this number to compare how investors are valuing other companies in the same business sector.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. The business model of social media companies is making money by monetizing user’s time.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of the main reasons I decided not to spend more than an hour on them per day. It just distracts me from my goals.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Free cash flow is what you should look for and evaluate first while reading a company’s financial statement for a quarter/year.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Basically, I will do some calculations by taking into account revenue, offerings, operating expenses, loan &amp;amp; debts, enterprise value, etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Value companies usually have more cash on hand.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you are a value investor, you are interested in raising the interest rates of your investments. Cash performs best by earning the most interest via compounding interest.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;8. Never think of buying anything immediately from anyone’s tip.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Instead, do your homework, so you can clearly understand what you are investing in. Please don’t buy anything without confirming it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;9. Consolidate and check your analysis research before investing.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you studied financial management or finance at any university, the first course you likely take would be “Financial Decision Making.” It’s for a reason, of course. Always double-check, consolidate quality, and quantity analysis before buying/selling your assets.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;10. Most of your investment losses are generally because of your low decision-making analysis.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;11. If everybody is talking about a particular investment, it’s too late to invest in it.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Indeed, most smart investors have been already invested in it. Your job as an aspiring investor is looking for trends that might be popping up at least one year before it will happen.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;12. The best investments are those you also use in your everyday life.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You are already an expert on that product/service and analyzing it every day while using it. So, having its shares, it’s a nice bonus.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;13. Day trading is not investing; it’s a business.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you want to become a retail day trader, you need to invest your money and time in education, starting capital, and tools for that. Treat day trading as a business in which you need to actively be working as a professional. It’s not a passive income.&lt;/p&gt;

&lt;p&gt;&lt;iframe class="tweet-embed" id="tweet-1316993402957926402-417" src="https://platform.twitter.com/embed/Tweet.html?id=1316993402957926402"&gt;
&lt;/iframe&gt;

  // Detect dark theme
  var iframe = document.getElementById('tweet-1316993402957926402-417');
  if (document.body.className.includes('dark-theme')) {
    iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1316993402957926402&amp;amp;theme=dark"
  }



&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;14. It’s good to automate everything related to an individual investment.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Fortunately, we are going through global digitalization, and there are lots of products and services we can use to ease investment activities.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;15. Long-term individual investors don’t manage their investment portfolio from the phone.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You need to see the “full” picture of what you are owning. Usually, your assets and even sold assets will contain lots of information that you should track. It’s impossible to visualize and evaluate the whole portfolio from the smartphone’s display.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Thank you for reading! 🙏&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you enjoyed the first 15 things about investing in 2020, you could &lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/" rel="noopener noreferrer"&gt;get the other 15 through my newsletter now! (+bonus: the cheat sheet on how to free extra monthly cash from your dev-salary for investment).&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We often see investing harder than it should be.&lt;/p&gt;

&lt;p&gt;Everyone approaches investment differently. The goal is not to lose your hard-earned money so you cannot recover from it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The important message is to have a process that can mitigate the risk of loss in your investment portfolio.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Therefore, we can always learn to better manage our investment portfolios by reducing the number of costly mistakes we make while investing and moving closer to achieving our financial goals.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by IlonaCodes constitutes an investment recommendation, nor should any data or content published by IlonaCodes be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>motivation</category>
      <category>developer</category>
      <category>learning</category>
    </item>
    <item>
      <title>What Happens to My Options When The Start-up Gets Sold? — Equity Compensation</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Tue, 15 Sep 2020 06:53:35 +0000</pubDate>
      <link>https://dev.to/ilonacodes/what-happens-to-my-options-when-the-start-up-gets-sold-equity-compensation-k5n</link>
      <guid>https://dev.to/ilonacodes/what-happens-to-my-options-when-the-start-up-gets-sold-equity-compensation-k5n</guid>
      <description>&lt;p&gt;This article is part of the series &lt;a href="https://ilonacodes.com/blog/what-startup-equity-compensation-means-for-developers-part-1"&gt;“What startup equity compensation means for developers”&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the &lt;a href="https://ilonacodes.com/blog/what-startup-equity-compensation-means-for-developers-part-1"&gt;previous part&lt;/a&gt;, we've looked into the economic value of your options—how you should value them, and how dilution works.&lt;/p&gt;

&lt;p&gt;In this post, I'm going to show you what happens when the start-up you hold options of, gets sold, and how you can realize your economic value in that scenario. Let's dive in!&lt;/p&gt;

&lt;h2&gt;
  
  
  💸 What happens when the company gets sold?
&lt;/h2&gt;

&lt;p&gt;That depends highly on the deal between the buyer and the company. If the price is high enough, then your vested options and exercised stocks will be liquidated.&lt;/p&gt;

&lt;p&gt;That means that you'll receive its price for each exercised stock based on the acquisition cost decided in the deal. For each vested option (not exercised), you'll receive the difference between the exercise price and its acquisition price.&lt;/p&gt;

&lt;p&gt;There are, of course, alternative outcomes that could happen: buyer, instead of liquidating your position, could replace your stocks with its own (with an appropriate ratio), and they can decide to continue or discontinue the unvested part of your stock option plan.&lt;/p&gt;

&lt;p&gt;Such a replacement is also an excellent economic compensation because soon (after the acquisition is over), you can liquidate them yourself. The bonus is that the acquirer will likely go up in price if it's a public company, or go up in valuation (if private) because it has acquired your start-up. And that increases the economic value of the new stocks/options you have received.&lt;/p&gt;

&lt;p&gt;Let's go through a simple example: 3 years from now, you have vested most of your options (75%), and you have exercised all of them at the exercise price of 10 cents per share.&lt;/p&gt;

&lt;p&gt;Also, because you're a loyal employee, you had gotten another 4-year stock option grant one year ago, and it's vested (25%) now—you haven't exercised that yet.&lt;/p&gt;

&lt;p&gt;Also, you have already advanced in your role to an Engineering Manager position.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Your grant #1 (from 3 years ago):&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Exercise price: 10 cents per share.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vested options: 150 * 75% = 112 options.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Exercised options: 112 stocks for 10 cents each.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Unexercised options: 0 options.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Unvested options: 150 * 25% = 38 options.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Your grant #2 (from 1 year ago):&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Exercise price: 10 dollars per share.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vested options: 100 * 25% = 25 options.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Exercised options: 0 stocks.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Unexercised options: 25 options.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Unvested options: 100 * 75% = 75 options.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And now, let’s say that another tech giant is negotiating a deal with your start-up for acquisition. Here are the details of the agreement:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Start-up valuation (post-money): 20M.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Agreed acquisition price: 25M.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Total shares: 22.500 shares.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Price per share: ~1111 dollars/share.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And the deal specifies that all exercised shares will be liquidated directly at the acquisition price per share. All the vested (unexercised) options will be liquidated at the difference between the exercise and acquisition prices.&lt;/p&gt;

&lt;p&gt;Additionally, for all the management roles and above (luckily, includes your Engineering Manager position), unvested option grants will be converted into the economically equivalent acquirer’s option grants.&lt;/p&gt;

&lt;p&gt;Let’s see what you can get here with such a deal:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Liquidated stocks: 112 * (~1111,11 - 0,10) = ~124.433&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Liquidated vested options: 25 * (~1111,11 - 10) = ~27.527&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s a total of &lt;strong&gt;151.960 dollars&lt;/strong&gt; gained by you.&lt;/p&gt;

&lt;p&gt;Of course, for the past three years, you’ve been investing about 20K/year in your “lost opportunity cost.” So let’s see what your return on that investment was:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Investment: 3 years * 20K/year = 60K&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Payout: ~152K.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Return on Investment (ROI): ((152K - 60K) / 152K) / 3 years = 20% return per year.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;20% yearly return. That’s not bad at all!&lt;/p&gt;

&lt;p&gt;Of course, the devil is always in the details. First of all, &lt;strong&gt;taxes:&lt;/strong&gt; the tax system may significantly cut this big payout. In some countries, this will be a capital gain (15-25%), and in some, it’ll be full-blown income tax within one of the highest tax brackets (35-45%). If you can, it’s recommended to hold your stock option grant with a corporation (that you own personally, or together as a couple), in most countries that will reduce the tax burden of realizing these gains considerably.&lt;/p&gt;

&lt;p&gt;Another detail is that &lt;strong&gt;the deal above is excellent.&lt;/strong&gt; Not all deals are great. If the start-up wasn’t doing too well, it could’ve been bought for the price lower than the valuation. Also, the acquirer could cancel vested and unvested options entirely—this will allow them to pay a higher price for a company. Thus, it is better for investors and for employees who have already exercised a lot of options.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So, to reduce the risk of losing your vested options, it’s best to exercise them earlier rather than later.&lt;/strong&gt; Holding actual stock beats holding onto options in the scenario of acquisitions. Of course, this is a good strategy for options with exercise prices near zero (such as 10 cents), but it may not be such a good idea for options with a higher exercise price (such as 10 dollars).&lt;/p&gt;

&lt;p&gt;The idea is that you’re competing against two possible bad outcomes:&lt;/p&gt;

&lt;p&gt;1) losing your vested options due to an acquisition;&lt;br&gt;
2) having your exercised shares go underwater because the market price (after IPO) or acquisition price is lower than your exercise price.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;That’s why it’s a great idea to exercise as soon as you can when the exercise price is low, and “wait and see” when the exercise price is significantly higher.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Alright, that was it from the perspective of an acquisition. What happens if your company doesn’t exit via being sold, and instead goes public? You can read it in the next part.&lt;/p&gt;

</description>
      <category>motivation</category>
      <category>career</category>
      <category>startup</category>
      <category>developer</category>
    </item>
    <item>
      <title>What Startup Equity Compensation Means For Developers: Part I</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Tue, 01 Sep 2020 07:32:21 +0000</pubDate>
      <link>https://dev.to/ilonacodes/what-startup-equity-compensation-means-for-developers-part-i-3gnm</link>
      <guid>https://dev.to/ilonacodes/what-startup-equity-compensation-means-for-developers-part-i-3gnm</guid>
      <description>&lt;p&gt;It’s not a secret that most founders get most of the equity because they quit their jobs, fundraise money, or put on their own to start a venture.&lt;/p&gt;

&lt;p&gt;In most cases, developers can get some stock options plans along with a paid salary, for example, if they are the early employees. Besides, if the company does well in the long run, these stock options can be worth thousands or millions of dollars.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--9Iw0B1Er--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1263551914974703618/kBugbfA-_normal.jpg" alt="Lucas Rizzotto profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Lucas Rizzotto
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @_lucasrizzotto
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      &lt;a href="https://twitter.com/bolayer"&gt;@bolayer&lt;/a&gt; &lt;a href="https://twitter.com/geekydiego"&gt;@geekydiego&lt;/a&gt; They are if you are a developer who stays loyal so the stock options don’t vest away (and you gain senior status).&lt;br&gt;&lt;br&gt;Many of those can make between 200k to 350k a year.
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      08:35 AM - 13 Jan 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1216639914793631745" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-reply-action.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1216639914793631745" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-retweet-action.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      0
      &lt;a href="https://twitter.com/intent/like?tweet_id=1216639914793631745" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-like-action.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
      0
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;Without a doubt, you won’t get filthy rich with the stock options unless the company is a new Google. However, it’s one of the opportunities to diversify your investments.&lt;/p&gt;

&lt;p&gt;Many early age start-ups also do a mix of equity with base salary as the full compensation. Usually, it is not a significant % of equity shares for developers and rates around 0.1-1%. You can get an overview of how much companies offer on &lt;a href="http://angel.co"&gt;AngelList&lt;/a&gt; if you sign up for it and start looking for developers' open positions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;There are different ways on how developers can receive their full compensation:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Getting paid in cash only. Having the base salary (no equity or equity options) that will cover their total compensation.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Apart from the base salary, developers can also receive a bonus for their valuable work and goal accomplishments, for example, yearly. Depending on the company and the developer roles, the bonus can be from 5% to 20% of the developer’s base salary.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Another opportunity is to get total compensation along with the % of company equity. Compared to the fixed salary base, equity options have the potential for any big payout if the company becomes profitable or comes out with a successful initial public offering or by exercising those equity options by the owner and then selling them in the future. In this case, you will invest your income to generate additional returns.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If the fixed base salary and bonus compensations look straightforward to understand, let me focus on and explain more about the equity compensation.&lt;/p&gt;

&lt;p&gt;There are different types of equity stocks, but the most popular are &lt;strong&gt;ISO (Incentive Stock Options)&lt;/strong&gt; and &lt;strong&gt;NSO (Non-Qualified Stock Options)&lt;/strong&gt;. ISOs are only for employees, and NSOs are for employees, contractors, business partners, etc.&lt;/p&gt;

&lt;p&gt;Other differences include whether the gap between the exercise price and the market price is treated as salaried income or capital gain for tax purposes. That depends on which country your tax residence is in. In general, the guideline is that ISOs are better from the tax perspective because the gap is treated as capital gain and not salary, which means, on average, a 15-25% tax rate instead of 35-45%. You have to hold the stocks for at least one year before selling them, usually to be recognized as a capital gain.&lt;/p&gt;

&lt;h2&gt;
  
  
  📊 How to understand the economic value of stock options?
&lt;/h2&gt;

&lt;p&gt;Let’s begin with an example. Let’s say there’s a start-up called Acme Inc. You are offered a Senior Software Developer role with the following offer:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Fixed base salary: 120K/year.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Stock options (ISO): 1%.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Stock exercise price: 10 cents.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This information is not enough to understand whether this is a fair offer or not. Missing pieces are the current average compensation for this type of role in your city, the company’s current valuation (the post-money valuation from the previous funding round of the start-up), and vesting period:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Market average compensation: 140K/year.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Company valuation (post-money): 12M.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Vesting period: 4 years.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now, for this offer to be fair, the stock options' economic value should be greater than how much “you’re losing” by taking the salary below the market average.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Minimum economic value needed: 140K - 120K = 20K/year.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To calculate the options' economic value, you have to take your full share of the company valuation and spread it over the vesting period:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Options' economic value: 12M * 1% / 4years = 30K/year.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Total compensation: 120K + 30K = 150K/year.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This compensation looks like a fair deal to me. Of course, the dilution of stocks is often a big concern.&lt;/p&gt;

&lt;h2&gt;
  
  
  💸 What happens to my stock options when there’s another funding round?
&lt;/h2&gt;

&lt;p&gt;When the company needs to let more investors in, it may have to create more shares. Let’s continue the previous example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Current shares count: 15.000 shares.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Your current shares count: 15.000 * 1% = 150 shares.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Company valuation (pre-money): 12M.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Fundraising target: 5M.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As you can see, the previous' funding round post-money valuation is the new funding round pre-money. Let’s also say that the company had some success in capturing a new market, and its valuation is higher now:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Up-to-date company valuation (pre-money): 15M.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you do the math on how many shares of the company should new investors have after the fund target is reached, it’ll be:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;New investors share: 5M / 15M = ~33,33%&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;New shares count: 15.000 / ~66,66% = 22.500 shares.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Your updates stock options share: 150 / 22.500 = ~0,66%.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s bad, isn’t it?! Your share has decreased from 1% down to ~0,66%.&lt;/p&gt;

&lt;p&gt;Not so fast! Remember your economic value before? What if we calculated the current one after the funding round is closed?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Your current economic value: 12M * 1% / 4years = 30K/year.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;New company valuation (post-money): 15M + 5M = 20M.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Your new economic value: 20M * ~0,66% / 4years = ~33K/year.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;So, even though the %-share has gown down, the economic value has gone up. The most significant bit here is that any capital that comes in due to fundraising adds up to the company valuation. That’s the difference between “pre-money” and “post-money” valuations.&lt;/p&gt;

&lt;h2&gt;
  
  
  🤩 How can I realize the economic value of my options?
&lt;/h2&gt;

&lt;p&gt;There are a few ways you can realize this value. The simplest one is when the company gets acquired by another business. That’s a classic way for founders, investors, and employees with stocks to realize their gains.&lt;/p&gt;

&lt;p&gt;Another more challenging path is to wait until the company goes through an IPO. That is a bit riskier, as in general, employees are not allowed to sell their stocks during the first few quarters.&lt;/p&gt;

&lt;p&gt;Of course, it can take years and years until either of the events above happens. Some companies may even decide not to have such an exit. What do you do then?&lt;/p&gt;

&lt;p&gt;Well, then you can sell your exercised shares inside of your companies to other employees! (if you can convince them to buy). Or you can even buy them from others if you want to have a higher stake.&lt;/p&gt;

&lt;p&gt;And still, what will happen when the company gets sold or when the company goes through an IPO? Or maybe, you would like to “exit” the company/startup quicker.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Answers to these questions I will provide in the next blog post, “What startup equity compensation means for developers: Part II."&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you want to get notified when Part II will be out, you can subscribe to &lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/"&gt;my newsletter and get my top-15 tips on saving more cash monthly for investment as a bonus.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you find any problems or mistakes in the calculations or logic, please don’t hesitate to reach out to me &lt;a href="https://twitter.com/ilonacodes"&gt;on Twitter.&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by IlonaCodes constitutes an investment recommendation, nor should any data or content published by IlonaCodes be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>motivation</category>
      <category>startup</category>
      <category>learning</category>
    </item>
    <item>
      <title>Why Developers Should Invest in Stocks</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Thu, 20 Aug 2020 05:57:08 +0000</pubDate>
      <link>https://dev.to/ilonacodes/why-developers-should-invest-in-stocks-45io</link>
      <guid>https://dev.to/ilonacodes/why-developers-should-invest-in-stocks-45io</guid>
      <description>&lt;p&gt;Nowadays, many well-earning developers wonder whether or not investing in stocks is worth all the hassle.&lt;/p&gt;

&lt;p&gt;Unfortunately, at the same time, most software developers still don’t know much about finance and investment in general, and the stock market specifically.&lt;/p&gt;

&lt;p&gt;Even the developers, who joined early-stage start-ups or big tech companies and got proper compensation in stocks, don’t know how it will benefit them in the future.&lt;/p&gt;

&lt;p&gt;When I started being interested in investment opportunities, I was terrified and intimated. I thought that this is only for financial experts and already wealthy people.&lt;/p&gt;

&lt;p&gt;I was so wrong!&lt;/p&gt;

&lt;p&gt;Of course, you should educate yourself first before you dive too deep into investing, but in reality, it’s not that hard as you think it is.&lt;/p&gt;

&lt;p&gt;Especially if you begin with investing in the stock market.&lt;/p&gt;




&lt;h2&gt;
  
  
  💰 Stocks increasing your capital
&lt;/h2&gt;

&lt;p&gt;Investing in stock is not gambling.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you can save regularly and invest wisely over a long time, you can grow your capital enormously.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;However, you shouldn’t invest if you are financially broke. Make sure before that your financial situation is in great shape, that you have an emergency fund to cover around three months of expenses in case of any emergency.&lt;/p&gt;

&lt;p&gt;It can also be useful to learn how to free extra monthly cash from your dev-salary for investment, so you can spend less and invest more. &lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/?r=sp" rel="noopener noreferrer"&gt;For that, you can use my top-15 tips cheat sheet to save more cash monthly here.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Investing is very interesting, despite the capital growth, that gives you something intelligent to learn rather than playing video games or watching TV shows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Most investors find long-term investments always beneficial for their capital.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For example, investing in high-growth new-on-the-market stocks may seem and certainly can be a great way to build wealth. Despite that, it’s wise to make an investment portfolio with the shares of established and grown companies.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“It is not necessary to do extraordinary things to get extraordinary results.”—Warren Buffett&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The most convenient and unmistakable approach to growth capital in the stock market is to buy company shares with great businesses for reasonable prices; hold them as long as they remain doing great businesses.&lt;/p&gt;

&lt;p&gt;Another impressive thing about stock investment, that your investment assets are liquid. You can sell them anytime and get your money back to your bank account.&lt;/p&gt;




&lt;h2&gt;
  
  
  📈 Stocks growing historically
&lt;/h2&gt;

&lt;p&gt;It’s not a secret that there are bad and good times for stock investment.&lt;/p&gt;

&lt;p&gt;This year, there was a stock market crash and have been market crashes, pullbacks, and periods of lousy performance before, and they will be in the market later in the future.&lt;/p&gt;

&lt;p&gt;And still, the US S&amp;amp;P 500 has historically produced 10%-11% before inflation or 7%-8% after inflation, and you can easily access it through your online broker or bank account.&lt;/p&gt;

&lt;p&gt;Overall, stocks tend to rise over the last 80-100 years! S&amp;amp;P 500 Index - 90 Year Historical Chart:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fwkialkymi541dnh7pslg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fwkialkymi541dnh7pslg.png" alt="S&amp;amp;P 500 Index - 90 Year Historical Chart"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For example, &lt;a href="https://www.visualcapitalist.com/best-performing-stocks-decade/" rel="noopener noreferrer"&gt;if you had invested $100 in the S&amp;amp;P 500 index in the 2010s, it would have amounted to $344 on the 5th of December 2019.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Historically, small-cap investing has proved to be much more beneficial than in large caps. Some small-cap companies can become large and highly profitable companies in the long run, like in 10-20 years (along with the digitalization and tech startups, it can take even 5 years).&lt;/p&gt;

&lt;p&gt;So if you decide to buy such stocks and hold them for a specific period, you might make a lot of money at the end after selling them or by keeping to collect dividends from them so far as the company decided to pay them off.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; find and research around 100 small-cap companies; filter them down to the best 5-10, and decide to invest in the absolute 3-5 favorites out of these, based on your conviction and analysis.&lt;/p&gt;




&lt;h2&gt;
  
  
  💎 Stocks keeping investment value
&lt;/h2&gt;

&lt;p&gt;You want the values of your stocks to increase because this is how your invested capital grows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Value investing means focusing on companies that can grow and become great first.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The underlying value investing concept is quite straightforward:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;You know the true value of the company stocks&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You buy it on sale&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You save a lot of money in this case&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You hold it and benefit from it&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Indeed, stock prices can change, for example, when the market is volatile, even when the actual company stock value has remained the same.&lt;/p&gt;

&lt;p&gt;Because depending on the market and its demand, stocks go through higher and lower periods that lead to substantial price fluctuations.&lt;/p&gt;

&lt;p&gt;But that doesn’t change the fact that you are getting for your money.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;As an investor, you are willing to buy stock shares at that “discount” compared to how the market values them.&lt;/strong&gt; So in return for buying and then holding these value stock shares for the long-term, you can be rewarded handsomely.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ilonacodes.com/blog/my-top-10-finance-and-investment-books-for-developers/" rel="noopener noreferrer"&gt;Learn more about finance and investment from my top-10 book list!&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  💸 Stocks paying off dividends
&lt;/h2&gt;

&lt;p&gt;By definition, dividends are part of the company profit that generally pays to equity shareholders. Usually, dividends are a reasonable percentage of company earnings.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Often large companies pay more dividend than smaller.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Logically, stocks that pay dividends regularly are the ones that should be in your investment portfolio. It means that dividend-paying stocks are cash-rich—they have consistent cash flows and are not debt-ridden according to their quarterly and yearly financial statements.&lt;/p&gt;

&lt;p&gt;Moreover, &lt;strong&gt;the dividend history of stock can play a vital role in making rational decisions.&lt;/strong&gt; That will help you understand whether the company pays dividends consistently and correctly for the last years.&lt;/p&gt;

&lt;p&gt;If a stock growth slows, a dividend is another way to ensure income. Because dividend-paying companies are typically more established, prominent, and stable.&lt;/p&gt;




&lt;h2&gt;
  
  
  ％ Stocks compounding
&lt;/h2&gt;

&lt;p&gt;Technically, &lt;strong&gt;company stocks offer no guarantee of income because their returns are based on market price volatility;&lt;/strong&gt; moreover, they don’t really suppose to pay interest.&lt;/p&gt;

&lt;p&gt;And still, there are two working ways on how the individual stock value of a particular company can rise along compounding your investments:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;The company makes more profits so that investors are willing to pay for shares. Hence, the stock price per share tends to increase year over year at a rate that resembles compound interest. That means if the stock price goes up, there will be fewer shares outstanding to buy, but the total company value is not going down, and likely continue going up in the future.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If the company started performing and earning well, the company might consider issuing dividends that will behave like compound interest on your investment. Many good stock investments pay 3-6% per year in dividends, so compounding means taking yielded cash dividends and reinvesting them in more shares.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;iframe class="tweet-embed" id="tweet-502501079448576000-893" src="https://platform.twitter.com/embed/Tweet.html?id=502501079448576000"&gt;
&lt;/iframe&gt;

  // Detect dark theme
  var iframe = document.getElementById('tweet-502501079448576000-893');
  if (document.body.className.includes('dark-theme')) {
    iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=502501079448576000&amp;amp;theme=dark"
  }



&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The compound interest uses time as the most significant factor for growing your returns. As a result, compounding does work in the stock market only if you invest in the long term.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The idea is that the company you invest in makes or will make a profit and yield dividends to enable you to reinvest that profit into its business. Then, it is getting bigger and makes even more profit the following year. That is how the definition of compound interest works for stocks.&lt;/p&gt;




&lt;h2&gt;
  
  
  📊 Stocks diversifying your investment
&lt;/h2&gt;

&lt;p&gt;Diversifying means investing across different stocks to mitigate loss risks.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Don’t pull all eggs in one basket”—English Proverb&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If you invest all your money in a single stock or depend on a particular sector or invest in specific assets, the chances are high that you might lose all your money if those stocks don’t perform well.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Reduce your risk when seeking returns.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To balance out the losses and continue to make money, you must diversify your investments in stocks and not only in them.&lt;/p&gt;

&lt;p&gt;If you have an investment portfolio that is permanently diversified and regularly rebalanced, you will not have periods of high losses nor high gains. Instead, you will get more steady capital net growth over the long term.&lt;/p&gt;

&lt;p&gt;The number of stocks you should hold linearly depends on the needs to meet your investment objectives and goals.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://amzn.to/3kKLaMy" rel="noopener noreferrer"&gt;The Intelligent Investor, Benjamin Graham,&lt;/a&gt; said that the magic number is somewhere between 10 and 30. As opposed to Peter Lynch, the famous fund manager at Magellan Fund, who did hold around 1500 stock positions at one point in time.&lt;/p&gt;

&lt;p&gt;Remember that diversified stock shares may have capital growth and pay regular cash dividends, which can be compounding and automatically reinvested.&lt;/p&gt;




&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;If you are convinced and itching to start your investment journey soon, make sure you will take the time to learn about all the basics before putting your savings into the stock market.&lt;/p&gt;

&lt;p&gt;It is crucial to keep an open mind, read different sources about stock investing, and get exposed to different investing opinions, either.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Buy stocks in companies that have a business you can understand.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Starting with a proven investment strategy for investing in the stock market for investor beginners is necessary.&lt;/p&gt;

&lt;p&gt;The more you educate yourself, the better the investment decisions you will make that will coincide in the long run.&lt;/p&gt;

&lt;p&gt;Still here? That’s amazing! Thank you so much for reading! If you are interested to learn more about your Developer-Investor Personality, you can &lt;a href="https://ilonacodes.com/investor-profile/?r=sp" rel="noopener noreferrer"&gt;try my quiz here.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And if you would like to invest more from your typical developer salary, check out &lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/?r=sp" rel="noopener noreferrer"&gt;my top-15 tips cheat sheet and save more cash monthly.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Build your best life,&lt;br&gt;
Ilona Dee Codes&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by IlonaCodes constitutes an investment recommendation, nor should any data or content published by IlonaCodes be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>motivation</category>
      <category>learning</category>
      <category>developer</category>
    </item>
    <item>
      <title>My Top-10 Finance And Investment Books For Developers</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Fri, 14 Aug 2020 06:08:04 +0000</pubDate>
      <link>https://dev.to/ilonacodes/my-top-10-finance-and-investment-books-for-developers-32ae</link>
      <guid>https://dev.to/ilonacodes/my-top-10-finance-and-investment-books-for-developers-32ae</guid>
      <description>&lt;p&gt;Besides podcasts, blogs, vlogs, etc. reading books is still something many software developers don’t want to miss.&lt;/p&gt;

&lt;p&gt;Although I have read many good books covering software engineering and other things in tech, I’m currently studying finances and investments. I want to learn their “best practices” just like in programming.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Today there are hundreds (if not thousands) of books on wealth growth, and obviously, it’s impossible to skim all of them because the average person reads between 25 and 30 books per year.&lt;/strong&gt; Hence, finding the ones worth reading in finance and investment to accomplish your financial goals like below is not that easy; at least it wasn’t for me.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--cWrj156d--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1226538870344441858/4BkygulT_normal.jpg" alt="Real Estate John 🏡 profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Real Estate John 🏡
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @john_moore7
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Financial Goals To Start Now:&lt;br&gt;&lt;br&gt;- Build an Emergency Fund of 10k&lt;br&gt;&lt;br&gt;- Save / Invest 25-50% of Income Per Month&lt;br&gt;&lt;br&gt;- Read 10 Books About Finance &lt;br&gt;&lt;br&gt;- Find a New Side Hustle &lt;br&gt;&lt;br&gt;- Pay Off Your Debt &lt;br&gt;&lt;br&gt;- Track Your Expenses &lt;br&gt;&lt;br&gt;- Monetize a New Skill &lt;br&gt;&lt;br&gt;- Buy Real Estate
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      22:53 PM - 13 Jul 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1282810412841472001" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-reply-action.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1282810412841472001" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-retweet-action.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      25
      &lt;a href="https://twitter.com/intent/like?tweet_id=1282810412841472001" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-like-action.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
      103
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;However, there are evergreens available, books that are still relevant today, and often recommended by investors, financial experts, and people who are interested in investment in general.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here are my top-10 books.&lt;/strong&gt; I would recommend reading these for any software developer or person in tech, who is willing to become financially literate, set up their financial goals, reach financial independence and early retirement:&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/3kKLaMy"&gt;1. The Intelligent Investor&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;It’s the definitive book on value investing written by none other than Benjamin Graham, Warren Buffett’s tutor.&lt;/p&gt;

&lt;p&gt;The author preaches diversification, prudence, and the importance of not getting caught up in bull markets—speculative investments during bull markets can lead to huge loss of principal investment.&lt;/p&gt;

&lt;p&gt;Graham also pointed out that &lt;strong&gt;investors should look at the underlying value of a business before investing in any company business:&lt;/strong&gt; there are no good or bad stocks; there are undervalued and overvalued ones.&lt;/p&gt;

&lt;p&gt;Investing formula from the book: buy more shares when the market is low than when it is high, and it’ll likely end up with satisfactory overall pricing for your investor’s holdings.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;There are three principles of intelligent investing:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;An intelligent investor always analyzes the long-term evolution and management policies of a company before investing.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;An intelligent investor always protects themselves from losses by diversifying investments.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;An intelligent investor never looks for crazy returns but focuses on safe and steady profit.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;In Buffett’s words:&lt;/p&gt;

&lt;p&gt;Rule No. 1: Never lose money.&lt;br&gt;
Rule No. 2: Never forget, Rule No. 1.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://amzn.to/3kKLaMy"&gt;You can get this book here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/3fLAidC"&gt;2. Common Stocks And Uncommon Profits&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;Fantastic if you are interested in what makes any business tick!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This is the only investment book I ever read and even studied that gave me a feeling of being “well-equipped” with the potential to become a successful investor.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Fisher’s guidelines are quite helpful, but they are mostly qualitative-based compared to those of Graham’s and Buffett’s, which are more quantitative, like how to research management and qualitative details of a company; R&amp;amp;D investments; what the company’s doing to improve margins, among other criteria.&lt;/p&gt;

&lt;p&gt;In my own experience, I have tried to apply some of the few tricks and tips from the author, which helped me answer the questions while analyzing stocks because I know that the growth stock (when bought young) offers by far the highest possibility of gain.&lt;/p&gt;

&lt;p&gt;Comprehensible and timeless investment classical book that should be read by anyone serious about achieving success in the stock market.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://amzn.to/3fLAidC"&gt;You can get this book here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/30Mm4EN"&gt;3. Unshakeable&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;If you understand mathematics, you will definitely understand money.&lt;/p&gt;

&lt;p&gt;I am not a fan of Tony Robbins, but in his book, Tony provides &lt;strong&gt;the best explanation of why most people don’t make it in the markets, and the minority does.&lt;/strong&gt; The main focus is on&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;core principles of investing&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;asset allocation&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;investor psychology&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;admin fees&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;tax laws&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For instance, even though his book most US-centric on US tax law examples, while being a tax resident in Germany, I knew not much about tax laws in Germany. Still, the theory behind these principles is the same in the majority of developed and developing countries. That’s why always make sure you invest in a way that is the most tax-efficient, and you don’t get a hefty chunk of money removed from your profit when you come to withdraw.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The core lesson is to shape your mindset into unshakeable financially,&lt;/strong&gt; which requires determination, integrity, smart working, knowledge, and forward-thinking!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://amzn.to/30Mm4EN"&gt;You can get this book here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/2CmyKsS"&gt;4. Rich Dad Poor Dad&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;If you stop working today, how long can you survive?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;No. 1 advice on how to make your assets work for you, so you can quit your job, enjoy life, and make money while having a dream life.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The truth that the rich dad focuses on generating income and assets, and the poor dad and middle-class dad view their liabilities as an asset.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This book is a must for everyone who is looking for financial independence.&lt;/strong&gt; It will help you to grow your mindset towards money and shows you how people, in reality, are held back in terms of finance due to their upbringing.&lt;/p&gt;

&lt;p&gt;Poor people work for money, while rich people make money work for them.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://amzn.to/2CmyKsS"&gt;You can get this book here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/2DIfwhX"&gt;5. The Richest Man in Babylon&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;There’s nothing truly revolutionary in the book published in 1926, which is why I like it. It is a bit of a fiction, but the stories bring out important lessons.&lt;/p&gt;

&lt;p&gt;I was lead to this book by “Rich Dad Poor Dad,” and this book further explains what Robert means by “pay myself first.”&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The underlying message is to spend less than you make and save (invest) the rest.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Perhaps the most significant book takeaway is that wealth goes as quickly as it comes if in the hands of a negligent person, in other words, in the hands of a materialistic consumer.&lt;/p&gt;

&lt;p&gt;If you haven’t read this book yet, you must do it. It’s a powerful read on wealth creation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://amzn.to/2DIfwhX"&gt;You can get this book here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/30RMtS1"&gt;6. The 4-Hour Workweek: Escape 9-5, Live Anywhere, and Join the New Rich&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;A bestseller should be read by those who want more from their working time and money-making assets and expand the time available for passions.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Someday” is a disease that will take your dreams to the grave with you.”—Tim Ferriss&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In short, try to eliminate as much as you can of your life, to travel lighter and faster.&lt;/p&gt;

&lt;p&gt;Another question you have is &lt;strong&gt;how you can work 4 hours per week?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The receipt in a nutshell:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Don’t work too much for someone&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Earn the same money for less amount of work&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tim Ferriss earns around $90000 per month with 4 hours of work per week. &lt;strong&gt;How does he do it exactly?&lt;/strong&gt; More importantly, how can you do it, the answer you can find is by reading his book.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://amzn.to/30RMtS1"&gt;You can get this book here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/33RhmYu"&gt;7. The Dhandho Investor: The Low-Risk Value Method to High Returns&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;Instead of unnecessary complexity, it’s well written and easy to read.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The author is an expert at finding undervalued company stocks.&lt;/strong&gt; He explains a few of his investing ideas and thought processes behind stocks in a simple way.&lt;/p&gt;

&lt;p&gt;The book is based on the philosophy of “Heads I win, tails I don’t lose much.” It mainly focuses on the stock market and gives you some basics, practical principles, and useful examples that you can apply in stock investments in general.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Just read, learn, and then earn by applying!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://amzn.to/33RhmYu"&gt;You can get this book here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/33O5y9g"&gt;8. The Elements of Investing&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;This book is clear and to the point about how to be a long-term investor to pursue average market gains with minimal losses.&lt;/p&gt;

&lt;p&gt;Though it is a heavy emphasis on sticking to &lt;a href="https://ilonacodes.com/investor-profile/?r=ic"&gt;your financial plan that fits your risk profile&lt;/a&gt;, asset class allocation, and investing in index funds and ETFs, keep it simple and passive as much as possible.&lt;/p&gt;

&lt;p&gt;It’s an excellent overview of investing, especially when saving for retirement. The book is down-to-earth and straight to the point. It contains a lot of valuable advice for any new person who wants to start investing and understanding financial jargon.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Invest smart, invest early, invest often.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://amzn.to/33O5y9g"&gt;You can get this book here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/2Y7O04D"&gt;9. The Little Book of Common Sense Investing&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;Beginner investors will not go wrong, implementing the advice outlined by the author!&lt;/p&gt;

&lt;p&gt;Because &lt;strong&gt;it is very applicable to the many individual investors today:&lt;/strong&gt; investing in index funds is a great low-cost and low-maintenance way to profit and get the market’s return.&lt;/p&gt;

&lt;p&gt;To provide more context to the reader, Bogle illustrates returns of various mutual funds and index funds through diagrams and charts. Also, he compares, based on how invested, your original investment, and how it would look after a particular time.&lt;/p&gt;

&lt;p&gt;Moreover, I like the book format. It’s divided into short chapters along with useful data, and neat quotation sections at the end of each chapter.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“The greatest enemy of a good plan is the dream of a perfect plan. Stick to the good plan.”—John Bogle, founder of The Vanguard Group.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://amzn.to/2Y7O04D"&gt;You can get this book here.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;a href="https://amzn.to/2PKKLLK"&gt;10. Think and Grow Rich&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;No doubt, this book’s principles can be used in any area of life, not just about monetary wealth, because richness means not only necessarily money. It measures not only in terms of financial gain and success but also in business ownership, development, intelligence, and working in general.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Richness has everything to do with investing in yourself!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Everything starts with how we think. We can achieve anything we want:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Whatever the mind of man can conceive and believe, it can achieve.”—Napoleon Hill&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;The book contains success stories for 13 lessons from people who have made great strides in achieving unbelievable financial goals.&lt;/strong&gt; Every story begins with the idea when the person has committed themselves, so the opportunities come, and they begin to prosper.&lt;/p&gt;

&lt;p&gt;Perhaps, it’s the only book a person needs to read to learn how to grow rich because most of the other such books are either inspired, referenced, or paraphrased from this book.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Think, grow, be rich!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://amzn.to/2PKKLLK"&gt;You can get this book here.&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;To sum this piece up: these are some of the must-have books on finance, investment, and growth mindset to read, in my opinion. &lt;strong&gt;I will try to keep this list in sync with new reading releases.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Finance and Investment, like Software Engineering, have always been challenging to understand and even more challenging to succeed in fully.&lt;/p&gt;

&lt;p&gt;Nonetheless, there are real experts and enlightening books that can be instrumental in wealth accumulating success because such books are your best mentor in whatever you’re eager to learn.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Focus on those books that work for you first.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Which books have you already read from this list, and which ones do you still want to read? Don’t hesitate to share it on &lt;a href="https://twitter.com/ilonacodes"&gt;Twitter&lt;/a&gt; with me!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by IlonaCodes constitutes an investment recommendation, nor should any data or content published by IlonaCodes be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Affiliate Disclosure: As an Amazon Associate, I may earn commissions from qualifying purchases from Amazon.com.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>motivation</category>
      <category>books</category>
      <category>developer</category>
    </item>
    <item>
      <title>Fatal Mistakes That Developers Should Avoid When Investing</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Thu, 06 Aug 2020 07:29:07 +0000</pubDate>
      <link>https://dev.to/ilonacodes/fatal-mistakes-that-developers-should-avoid-when-investing-1h67</link>
      <guid>https://dev.to/ilonacodes/fatal-mistakes-that-developers-should-avoid-when-investing-1h67</guid>
      <description>&lt;p&gt;When you just start investing, it is quite easy to make investment mistakes at the beginning.&lt;/p&gt;

&lt;p&gt;Unfortunately, &lt;strong&gt;investor-beginners lose money in investing because they have no clear cut goals, risk definitions, strategies.&lt;/strong&gt; Hence, they underperform over almost every other asset class in terms of returns over the short or long run.&lt;/p&gt;

&lt;p&gt;As an individual developer-investor, you can minimize your investment risks and manage to get good returns through investment if you will avoid or learn from the predictable investment mistakes.&lt;/p&gt;

&lt;p&gt;What are those mistakes first-time investors make?&lt;/p&gt;




&lt;h2&gt;
  
  
  🗒 Investing without plan
&lt;/h2&gt;

&lt;p&gt;Investment without any plan can lead to deviating from your path where you might not get any profit.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Risk comes from not knowing what you are doing."—Warren Buffett&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For example, one crucial mistake you may make is to invest in stocks or commodities you don’t understand how much returns you can get in long or short terms.&lt;/p&gt;

&lt;p&gt;As a developer-investor with strong analytical and logic skills in the background, you need to analyze a company stock and a company at all with the mindset of owning the company before investing in it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;When it comes to picking the best company stocks, you have to consider different metrics that investors usually use to analyze companies.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I have defined the top-10 most potent and useful metrics in investing through my extensive research and analysis: revenue/sales, earnings growth, cash flow, stock price, net profit margin, and more.&lt;/p&gt;

&lt;p&gt;If you want to find more information about my top-10 favorite metrics I am looking for before investing in stock, you can read about them in &lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/"&gt;my upcoming newsletter (+bonus cheat sheet on how developers can save more cash monthly in 15 easy ways).&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Remember, not all shares that trade in the stock market are safe for investment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Don’t trade, instead learn first then invest.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Always decide your goals and objectives and appropriate benchmarks for better results.&lt;/p&gt;




&lt;h2&gt;
  
  
  💸 Investing without diversification
&lt;/h2&gt;

&lt;p&gt;Diversification is the key to reduce the risk when you invest.&lt;/p&gt;

&lt;p&gt;For example, most developer-investors hold vast chunks of their employer’s stocks but little else. Or they own other handful stocks in the same industry like tech or IT.&lt;/p&gt;

&lt;p&gt;In a nutshell, to reduce risk without compromising your returns, you should invest in at least 10-15 unrelated investments and diversify your investment portfolio based on your asset allocations.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--jw32dnI8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1097867495795580928/StA4BEoF_normal.png" alt="Ian Cassel profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Ian Cassel
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @iancassel
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Thoughts on diversification: &lt;br&gt;&lt;br&gt;If you don’t have the time or ability to know your investments better than most, then you should be more diversified.
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      12:09 PM - 02 Aug 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1289896143187357701" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-reply-action.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1289896143187357701" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-retweet-action.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      38
      &lt;a href="https://twitter.com/intent/like?tweet_id=1289896143187357701" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-like-action.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
      317
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;Asset allocation is basically the mix of investments in a portfolio.&lt;/p&gt;

&lt;p&gt;It describes the proportion of cash, bonds, and stocks that make up any investment portfolio and maintain the right asset allocation—the most crucial decision long-term investors can make.&lt;/p&gt;

&lt;p&gt;To determine which factors influence your investment portfolio, &lt;a href="https://ilonacodes.com/blog/why-developing-your-personal-investment-strategy-is-a-must/"&gt;read my article on personal investment strategy for developers.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Investors often lose a lot of money by putting all of their investments in one place. Diversification helps you minimize the risk as the profit from one asset can neutralize the losses of another.&lt;/p&gt;




&lt;h2&gt;
  
  
  🏦 Not paying attention to the admin fees and taxes
&lt;/h2&gt;

&lt;p&gt;Banks and brokerage fees can form a significant portion of your investments to eat your returns. For example, if a fund is returning 8%, but it had a 2% admin fee, your net gain would be 6%&lt;/p&gt;

&lt;p&gt;And these fees will compound over time to a much more significant number along with &lt;a href="https://ilonacodes.com/blog/how-developers-can-supercharge-their-savings/"&gt;the simple and compound interest.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;On the other hand, &lt;strong&gt;every time you buy/sell/hold an asset, your broker or bank will get commissions for holding and executing the trade,&lt;/strong&gt; that’s why you should trade as least as possible and find a broker or a bank, which will offer to open and maintain your security account with low-cost operational fees.&lt;/p&gt;

&lt;p&gt;If you read &lt;a href="https://amzn.to/2EIRG5U"&gt;“Thinking Fast and Slow” by Dan Kahneman&lt;/a&gt;, you know that automating investments means paying yourself first and achieving dollar-cost averaging. The last one means investing equal dollar amounts in the market at regular intervals while controlling market fluctuations and buying assets at different price points and the best timing. Moreover, investment automation will allow you to avoid order fees, so you will pay once to set up a monthly contribution.&lt;/p&gt;

&lt;p&gt;Another fact that &lt;strong&gt;shorter you hold an asset, the more taxes you pay on it too.&lt;/strong&gt; The tax rate on your income depends on your tax country residence. The bigger your capital is, the more you have insecurities and immobile assets, the fewer taxes you would pay for the specific period.&lt;/p&gt;




&lt;h2&gt;
  
  
  🎯 Having a short-term focus
&lt;/h2&gt;

&lt;p&gt;The truth is that most investor beginners focus on investing in the stock/commodity market for a shorter period, even though the long term investment performance is pretty consistent.&lt;/p&gt;

&lt;p&gt;Because the longer you hold, for example, stocks, the more consistent your future returns will be. In fact, for the 1-year and 5-year holding periods, the range of possible returns is entirely predictable.&lt;/p&gt;

&lt;p&gt;Let’s compare the 1-year and 5-year growth of the S&amp;amp;P 500 index:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--c6BwVNtc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/yz7qzvpyqw39odsb8cdp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--c6BwVNtc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/yz7qzvpyqw39odsb8cdp.png" alt="S&amp;amp;P 500 Chart"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Due to the market crash in March 2020, the S&amp;amp;P 500 index fell, but according to the chart above, the index grew to its past performance and continued its growth.&lt;/p&gt;

&lt;p&gt;If you are a well-paid developer, chances are you looking for an investment with a long-term focus. You know that it will tend to have steady and consistent returns and big profits over time.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ilonacodes.com/investor-profile/"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--y5DFDwBw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/rqzunnp9uzwf835aqynz.png" alt="Investor Personality Quiz"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Compared to hyper-focused investors in the short term, you will not struggle to perform well daily or even hourly, because you earn well and don’t need to chase big profits immediately.&lt;/p&gt;

&lt;p&gt;Just keep your focus on the long run, and you will be generously rewarded in the future.&lt;/p&gt;




&lt;h2&gt;
  
  
  📚 Lacking the understanding of financial language
&lt;/h2&gt;

&lt;p&gt;Indeed, this is a big one!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;No doubts that most developers are usually well-educated and professional people.&lt;/strong&gt; Still, not many are convenient with understanding financial definitions or expressions when it comes to financial literacy.&lt;/p&gt;

&lt;p&gt;If you are serious about your investment, it is a prerequisite to become financially literate and take advantage of all the options. Even if you are not confident, googling things that you don’t understand and asking a lot of questions helps — a great deal!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“We were not taught financial literacy in school. It takes a lot of work and time to change your thinking and to become financially literate."—Robert Kiyosaki&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Be sure you are conscious of all the financial terminology you are facing during your investment research. Try to find the explanation to any unknown word on your own first, if you are still unsure or have questions, don’t hesitate to get a consultation with an expert you trust.&lt;/p&gt;




&lt;h2&gt;
  
  
  💬 Conclusion
&lt;/h2&gt;

&lt;p&gt;Be flexible and humble, and learn from mistakes. Before you start investing, you should be able to explain why you’re buying.&lt;/p&gt;

&lt;p&gt;Have a long-term view and ignore the short-term volatility, because low-risk investment with a long-term horizon may later yield high dividends.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--WnG3QIT5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1175417166260105217/T-E1p5yg_normal.jpg" alt="LearnLifeWealthTravel | Dream Big, Think Growth !! profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        LearnLifeWealthTravel | Dream Big, Think Growth !!
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @anybodycanfly
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Common Investment / Trading mistakes &lt;br&gt;&lt;br&gt;~ No goals, no objective, no plan&lt;br&gt;~ Over-activity, too much &amp;amp; too often&lt;br&gt;~ Not enough diversification, no meaningful Concentration&lt;br&gt;~ Extra belief in paid advisors&lt;br&gt;~ Chasing momentum&lt;br&gt;~ Mixing short &amp;amp; long term&lt;br&gt;~ Ignoring taxes&lt;br&gt;~ No self review
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      05:30 AM - 29 Jul 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1288346132548972545" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-reply-action.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1288346132548972545" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-retweet-action.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      16
      &lt;a href="https://twitter.com/intent/like?tweet_id=1288346132548972545" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="/assets/twitter-like-action.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
      110
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;Investing your money is quite a challenging thing to do in the beginning! And still, it is vital to learn and apply it as just savings alone cannot help you achieve all your financial goals.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by IlonaCodes constitutes an investment recommendation, nor should any data or content published by IlonaCodes be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>motivation</category>
      <category>learning</category>
      <category>developer</category>
    </item>
    <item>
      <title>How Developers Can Supercharge Their Savings</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Thu, 30 Jul 2020 06:49:39 +0000</pubDate>
      <link>https://dev.to/ilonacodes/how-developers-can-supercharge-their-savings-3oh8</link>
      <guid>https://dev.to/ilonacodes/how-developers-can-supercharge-their-savings-3oh8</guid>
      <description>&lt;p&gt;Any type of financial investment should earn you compound interest. Over time, this will build the value of your investment passively.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ilonacodes.com/blog/top-5-best-ways-to-start-investing-for-developers/" rel="noopener noreferrer"&gt;If you start investing,&lt;/a&gt; you should learn how to develop an understanding of the passage of time that affects the value of a dollar that you have invested.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ilonacodes.com/investor-profile/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F4yfhsd5tmzhbh0m7ou02.png" alt="Your personal investment strategy"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It means that the time value of money refers to the concept that invested money can earn interest and be worth more in the future than it is today.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Someone's sitting in the shade today because someone planted a tree a long time ago."—Warren Buffet&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Assuming that the annual market rate of interest is 10%, the $100 deposit will earn 10% or $10 by the end of the year: $100 in 2020 is $110 in 2021.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ilonacodes.com/blog/why-developing-your-personal-investment-strategy-is-a-must/" rel="noopener noreferrer"&gt;As a developer-investor,&lt;/a&gt; you should always make decisions regarding cash flows and prepare a cash flow analysis that takes future cash flows into account before investing in any asset.&lt;/p&gt;

&lt;p&gt;❗️ &lt;strong&gt;Compute your investment’s present and future values before investing, because the present value is always less than the future value.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is true because money can earn simple and compound interest:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Simple Interest&lt;/strong&gt; is earned on the principal amount (the original amount of investment) only according to the above-listed example: $100 in 2020; $110 in 2021; $120 in 2022 =&amp;gt; each year, the $100 investment will earn $10.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Compound Interest&lt;/strong&gt; is earned on the principal + interest earned in prior periods: $100 in 2020; $100 * 1.10 = $110 in 2021; $110 * 1.10 = $121 =&amp;gt; the original $100 investment would increase more than $10 per year due to the compounding of interest.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What’s the difference in the investment balance that would be at the end of 10 years using both simple and compound interest?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fqild0y59jrshqm9woi9a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fqild0y59jrshqm9woi9a.png" alt="Simple and Compound interests"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://compound.ilonacodes.com/" rel="noopener noreferrer"&gt;🧮 Use my compound interest calculator here!&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here is the main implementation algorithm of a simple compound interest calculator with JavaScript to easily compute the compound interest and total deposit future value of the investment in years, based on an initial principal:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// this function will return a table with data for all next years&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;calculate&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;({&lt;/span&gt; &lt;span class="nx"&gt;principal&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;years&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;interest&lt;/span&gt; &lt;span class="p"&gt;})&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;rate&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;interest&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="c1"&gt;// the first entry is year 0—makes the logic simpler below&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;table&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[[&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;principal&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;principal&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;]];&lt;/span&gt;

  &lt;span class="k"&gt;for &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;=&lt;/span&gt; &lt;span class="nx"&gt;years&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nx"&gt;table&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;push&lt;/span&gt;&lt;span class="p"&gt;([&lt;/span&gt;
      &lt;span class="nx"&gt;i&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;  &lt;span class="c1"&gt;// year number&lt;/span&gt;
      &lt;span class="nx"&gt;table&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;][&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;principal&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;rate&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;  &lt;span class="c1"&gt;// with simple interest&lt;/span&gt;
      &lt;span class="nx"&gt;table&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;][&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;rate&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;  &lt;span class="c1"&gt;// with compounding interest&lt;/span&gt;
      &lt;span class="nx"&gt;table&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;][&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;rate&lt;/span&gt;  &lt;span class="c1"&gt;// compounding dividends this year&lt;/span&gt;
    &lt;span class="p"&gt;]);&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;

  &lt;span class="c1"&gt;// remove convenience entry for year 0&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;table&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;slice&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;“Compound interest is the eighth wonder of the world. He who understands it, earns it … he who doesn’t … pays it."―Albert Einstein&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Importance of the compound interest for investors
&lt;/h2&gt;

&lt;p&gt;If you want to learn how to put your money to work for you without much effort, learn first how compound interest works! It can help you exponentially grow your wealth because you are not only getting interest on your initial investment (principal), but you are getting interest on top of interest!&lt;/p&gt;

&lt;p&gt;Let me illustrate how your money can make more money for you with examples:&lt;/p&gt;

&lt;h3&gt;
  
  
  🎓 Saving money for the college tuition for your child
&lt;/h3&gt;

&lt;p&gt;Goal: Start saving at birth for 18 years.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Question: How much do you have to save today for the investment to grow to $50000 at the end of 18 years with the 10% average interest rate?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Formula: pv = fv / (1 + i) ^ n&lt;/p&gt;

&lt;p&gt;Explanation:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;You want to have a $50000 at the end of 18 years, so the fv (future value) is 50000&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The number of periods is 18 years, n = 18&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The interest rate is 10%, i = 0.1&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You don’t know pv (present value), so it is unknown in our equation&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Solution: pv = $50000 / (1 + 0.1) ^ 18 = $8992.94&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉 You need to invest $8992.94 today that pays 10% per year to have $50000 in 18 years.&lt;/p&gt;




&lt;p&gt;If you wanted to invest on a monthly basis instead of a one-time lump sum, how much would you need monthly?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fhyd67zkz9s8u804z89xf.png" alt="Top-15 Tips on How to Free Extra Cash For Investment"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  🚘 Buy a car in X years
&lt;/h3&gt;

&lt;p&gt;Goal: To save enough money to buy a $50000 car in 5 years.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Question: How much do you have to invest each month to save $50000 in 5 years, with the current market interest rate of 7%?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Formula: PMT = (FV * i) / (n x ((1 + i/n) ^ n x (t - 1))) (capital letters to indicate that is an annuity problem)&lt;/p&gt;

&lt;p&gt;Explanation:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;You want to save on an annual basis in order to have $50000 in 5 years. You have to calculate an FV (future value of an annuity)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The time is t = 5 years, and the number of times interest is compounded is monthly n = 12&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The interest rate is 7%, i = 0.07&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You don’t know PMT (the monthly payment you must pay to reach your goal in 5 years), so it is unknown in our equation.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Solution: PMT = (50000 * 0.07) / (12 x ((1 + 0.07/12) ^ 12 x 5 - 1)) = $698.30&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉 You need to pay $698,30 into your savings each month with the 7% of interest rate to buy a car for $50000 in 5 years.&lt;/p&gt;




&lt;h3&gt;
  
  
  🏦 Investing in bonds
&lt;/h3&gt;

&lt;p&gt;Goal: investing in bonds long-term (more than a year).&lt;/p&gt;

&lt;p&gt;Let’s assume you are considering an investment in bonds. Your broker suggests buying 200, 3-year, 6% XYZ Corporation bonds, which pay interest semi-annually.&lt;/p&gt;

&lt;p&gt;You ask the broker for more clarification, which they gladly provide:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;these bonds have a face value of $50 and mature at the end of 3 years from the issuance date&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;6% is the contractual rate of interest, which you will receive&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;these bonds pay interest semi-annually, so you will receive 3% interest every 6 months&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What you know:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Bond investment = 200 bonds x $50 = $10000&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Semi-annual interest payments = $10000 x 3% = $300 (you will get twice per year)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Contract rate of interest = 6% per year&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Inflation rate = 2%&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Maturity date = 3 years or 6 time periods&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;em&gt;Question: What is your investment’s present value, and how much money will you return in 3 years?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;To answer your question, you have to analyze the bond — make a bond valuation:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1: Calculate the pv (present value of a lump sum) of the bond face&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Formula: pv = fv / (1 + ir) ^ n — the equation present value equals future value times the factor, where “ir” is an inflation rate.&lt;/p&gt;

&lt;p&gt;pv = $10000 / (1 + 0.02) ^ 3 = $9423.22 — the present value of the face of the bonds in 3 years.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2: Calculate the PV (Present Value of an annuity) of the periodic bond interest payments&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;First, we need to calculate a semi-annual interest payments = $10000 x 3% = $300 (you will get twice per year)&lt;/p&gt;

&lt;p&gt;PVIFA = (1 - (1 + i) ^ -n) / i =&amp;gt; (1 - (1 + 0.03) ^ -6) / 0.03 = 5.42&lt;/p&gt;

&lt;p&gt;This means that every $1 you receive is worth $5.42 in present value. Now you can work out the present value based on the payment amount that you are receiving semi-annually: PV = $300 * 5.42 = $1626&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3: Add the results of Step 1 + Step 2 to calculate the bonds' value for 3 years:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The present value of your money in 2022 is $9.423,22 + $1.626 = $11.049,22 influenced by the 2% of inflation rate along 3 years.&lt;/p&gt;




&lt;h2&gt;
  
  
  💬 Conclusion
&lt;/h2&gt;

&lt;p&gt;One of the main tasks of financial managers is to use compounding interests to estimate the risk and return on investments and compare investment risks and return to analyze financial challenges and opportunities.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ilonacodes.com/blog/why-developing-your-personal-investment-strategy-is-a-must/" rel="noopener noreferrer"&gt;To select which financial products are apt to invest for the long term,&lt;/a&gt; there are some metrics that you, as an investor, need to understand. The power of compounding interests is one of them.&lt;/p&gt;

&lt;p&gt;It is easier than it sounds, and you do not need to be a financial manager to do it. Just remember that small changes in annual returns can affect the future value of our investment. Thus, if your goal is to maximize future wealth, anything that decreases the annual returns should be avoided, and every opportunity that increases the annual returns should be undertaken.&lt;/p&gt;

&lt;h2&gt;
  
  
  📌 Sources
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.thestreet.com/personal-finance/education/time-value-of-money-14796679" rel="noopener noreferrer"&gt;What Is the Time Value of Money and Why Does It Matter?&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://studyfinance.com/present-value-interest-factor-of-annuity/" rel="noopener noreferrer"&gt;PVIFA (Present Value Interest Factor of Annuity)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=mec-QpjQMXY" rel="noopener noreferrer"&gt;The rule of 72 for compound interest (Video)&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by IlonaCodes constitutes an investment recommendation, nor should any data or content published by IlonaCodes be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>motivation</category>
    </item>
    <item>
      <title>Top 5 Best Ways to Start Investing For Developers</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Sun, 26 Jul 2020 06:32:29 +0000</pubDate>
      <link>https://dev.to/ilonacodes/top-5-best-ways-to-start-investing-for-developers-5547</link>
      <guid>https://dev.to/ilonacodes/top-5-best-ways-to-start-investing-for-developers-5547</guid>
      <description>&lt;p&gt;Having money in the bank that is just giving you zero profit and killing your capital instead of making more money is not going to help you achieve your financial goals.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Saving is not investing.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;iframe class="tweet-embed" id="tweet-1271382415752249345-682" src="https://platform.twitter.com/embed/Tweet.html?id=1271382415752249345"&gt;
&lt;/iframe&gt;

  // Detect dark theme
  var iframe = document.getElementById('tweet-1271382415752249345-682');
  if (document.body.className.includes('dark-theme')) {
    iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1271382415752249345&amp;amp;theme=dark"
  }



&lt;/p&gt;

&lt;p&gt;Many economies nowadays suffer from inflation and currency devaluation (especially for developing countries). To beat those, you need to create additional value on your money through investment.&lt;/p&gt;

&lt;p&gt;If you don’t have time to read multiple books, articles, and other boring docs nor the capacity to make sense of those, let me simplify things for you.&lt;/p&gt;

&lt;p&gt;Here are some simple suggestions on how you can start investing efficiently and step by step to become better at that:&lt;/p&gt;

&lt;h2&gt;
  
  
  🧓 Invest in an individual retirement account
&lt;/h2&gt;

&lt;p&gt;You won’t be getting a paycheck from your employer in retirement. No income. None. That’s obvious. You are going to have to rely on other income sources at that time.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“The question isn’t at what age I want to retire, it’s at what income."—George Foreman&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Traditionally, an individual retirement account is a long-term passive investment, usually for 15-40 years, with post-tax paid earnings—you will pay taxes only when you decide to stop contributing and cash out your money.&lt;/p&gt;

&lt;p&gt;Depending on the country, there are different types, rules, and names for the “individual retirement account” program. To get more information about such an investment opportunity, you should contact the bank or financial consultant in the country you are a tax resident of.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Individual_retirement_account" rel="noopener noreferrer"&gt;The definition and investment model of an individual retirement account in the USA, you can read here.&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  📊 Invest in low-cost index funds
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://ilonacodes.com/investor-profile/" rel="noopener noreferrer"&gt;No matter what kind of investor you are,&lt;/a&gt; you should always think like an investor about the diversification of your assets in your investment portfolio.&lt;/p&gt;

&lt;p&gt;For an investor-beginner, I recommend you to start thinking about long-term investment initially because long-term capital gains tax rates are significantly lower than short-term capital gains tax rates (depending on the country). In this case, you get to keep way more money in your securities.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Low-cost index funds and ETFs are the best options to go into that for at least the first 5–10k before venturing to other funds or individual stock picking.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;An ETF is a basket of securities — stocks, bonds, commodities, or some combination of those that you can buy and sell through a broker. They combine the diversification benefits and are available at various risk levels. Moreover, your investment capital shouldn’t be a large one at the beginning. You can start at $25 per month.&lt;/p&gt;

&lt;p&gt;Index funds are common among ETFs too. It’s a passive investment fund designed to track indexes like S&amp;amp;P 500, NYSE, NASDAQ, etc. and automatically investing in stocks on the index they are tracking.&lt;/p&gt;

&lt;p&gt;To start investing in low index funds/ETFs, you have to open a brokerage account. My favorites are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Fidelity&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;E*Trade&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Robinhood (100% free to join, plus offers extended market trading hours)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Interactive Brokers&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Trade Republic (available only for German and Austrian tax residents).&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A few example options, I have already invested in: US S&amp;amp;P 500 Index Fund consists of an index of 500 of the largest U.S. companies, NASDAQ 100, based on market capitalization; Vanguard ETFs, MSCI World, and more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Admin fees for index funds shouldn’t be more than 0.05% to 0.3%.&lt;/strong&gt; Because the fewer admin fees, the less they will eat your return from index funds investment.&lt;/p&gt;

&lt;p&gt;Another nice thing about investing in index funds is that you can automatically set up your monthly/bimonthly/quarterly investments. It removes the pressure to decide when to make each investment and free you from the order fees for each investment contribution.&lt;/p&gt;

&lt;p&gt;Most brokers offer this functionality. It consists of automatic investments to make it easier to stick to your investment plan.&lt;/p&gt;




&lt;h2&gt;
  
  
  🏦 Invest in fixed deposit and bonds
&lt;/h2&gt;

&lt;p&gt;A fixed deposit is one of the most common ways to invest money with low-risk. Every bank offers a variety of services in fixed deposits that will lead to lucrative returns because they come with a fixed maturity period.&lt;/p&gt;

&lt;p&gt;The maturity period can range from 15 days to five years. It can be considered for both short-term and long-term investments. So, if you want a safe investment, then fixed deposits are one of the best ways to invest money.&lt;/p&gt;

&lt;p&gt;When you buy a &lt;a href="https://en.wikipedia.org/wiki/Bond_%28finance%29" rel="noopener noreferrer"&gt;bond&lt;/a&gt;, you are loaning a specific amount of money to its issuer for a determined time. In exchange, the issuer promises to make regular interest payments at an agreed rate until the bond comes due and then repay your initial investment - the principal:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;For example, you buy a 5-year, $8000 bond paying 4% interest rate. The issuer, in exchange, will promise to pay the interest rate on that $8000 quarterly, and then return your $8000 after 5 years.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The advantage of putting bonds in your portfolio is that they are a relatively safe investment. Bond values don’t tend to fluctuate as much as stock prices, so they are less likely to keep you worried consistently.&lt;/p&gt;




&lt;h2&gt;
  
  
  💎 Invest in commodities and metals
&lt;/h2&gt;

&lt;p&gt;The argument for investing in physical assets (like gold, oil, steel, etc.) is that resources are tangible and hold value.&lt;/p&gt;

&lt;p&gt;During the recession in a bear (falling) stock market, the price of precious metals is usually growing. &lt;a href="https://www.forbes.com/sites/theyec/2020/03/03/is-investing-in-gold-worth-it-in-2020/#552ad6e12912" rel="noopener noreferrer"&gt;Gold often holds value when stocks fall:&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Gold remains an invaluable long-run inflation hedge that provides a strong foundation for any risk-intolerant portfolio. Allocating 5% to 15% of your portfolio to precious metals — with the majority in gold — could be one of the best defenses against an economic downturn and an uncertain geopolitical arena in 2020."—Young Entrepreneur Council (YEC)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;When you invest in commodities like natural gas, corn, soy, and coffee beans, you are counting on supply and demand, which, in turn, drives the commodity price higher than what you paid for it.&lt;/p&gt;

&lt;p&gt;Basically, you invest in futures. If the market price would be higher than your future contract, you will make money.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The most common way to invest in commodities for individual investors is around just $1,000, for example, via ETFs.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here is the list of ETFs you can invest in &lt;a href="https://www.firstbridgedata.com/page/list-of-etns-exchangetraded/" rel="noopener noreferrer"&gt;precious metals and commodities.&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🎓 Invest in yourself
&lt;/h2&gt;

&lt;p&gt;Money doesn’t change people. It just gives them the freedom to become more of a person they already are.&lt;/p&gt;

&lt;p&gt;At the beginning of your investment journey, the key is to focus on building assets and cash to invest in more assets.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The first step is to educate yourself about finances and find ways to free more money for investments.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you want to learn how to free extra monthly cash from your dev-salary for investment, you can &lt;a href="https://ilonacodes.com/financial-tips-for-freeing-extra-money-for-investment/" rel="noopener noreferrer"&gt;get my 15 tips on how to free extra cash for investment.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The second step is to use it to make yourself better:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Invest time to research what you feel passionate about&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Invest money in courses to learn new skills&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Invest in reading books&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Invest in experience&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Invest money into automation to spend your time on more important things&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe class="tweet-embed" id="tweet-1265031581204348931-859" src="https://platform.twitter.com/embed/Tweet.html?id=1265031581204348931"&gt;
&lt;/iframe&gt;

  // Detect dark theme
  var iframe = document.getElementById('tweet-1265031581204348931-859');
  if (document.body.className.includes('dark-theme')) {
    iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1265031581204348931&amp;amp;theme=dark"
  }



&lt;/p&gt;




&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Investing may seem scary, but it doesn’t have to be. The best way to begin investing is to start!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In theory, there is no difference between theory and practice. In practice there is.–Yogi Berra&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Every investment option has its pros and cons.&lt;/strong&gt; Some vehicles come with low risks, while others have a high level of risks. &lt;a href="https://ilonacodes.com/blog/why-developing-your-personal-investment-strategy-is-a-must/" rel="noopener noreferrer"&gt;So, before investing in any financial product, understand it well in terms of risks and returns.&lt;/a&gt; Along with that, determine your risk tolerance, too. However, having a diversified portfolio of assets reduces the risks.&lt;/p&gt;

&lt;p&gt;Do it as carefully and as thoughtfully as you can, decide on the investment type you want to invest in, consider starting with a small initial investment in a passively managed fund. Especially if you’re working toward a long-term goal like retirement, it’s important to stay confident, even during unprofitable years in the public market.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Disclaimer: Author’s opinions are their own and do not constitute financial advice in any way whatsoever. Nothing published by IlonaCodes constitutes an investment recommendation, nor should any data or content published by IlonaCodes be relied upon for any investment activities.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>investment</category>
      <category>beginners</category>
      <category>motivation</category>
      <category>developer</category>
    </item>
    <item>
      <title>Why Developing Your Personal Investment Strategy is a Must?</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Wed, 22 Jul 2020 07:08:10 +0000</pubDate>
      <link>https://dev.to/ilonacodes/why-developing-your-personal-investment-strategy-is-a-must-je6</link>
      <guid>https://dev.to/ilonacodes/why-developing-your-personal-investment-strategy-is-a-must-je6</guid>
      <description>&lt;p&gt;If you learned how to save money successfully, sooner or later, many of us will be faced the question: &lt;strong&gt;“How can we invest our hard-earned money profitably — assets like shares, stocks, bonds, funds, certificates or gold?”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Obviously, you don’t want to make bad decisions that can lead you to money loss, and not the capital win.&lt;/p&gt;

&lt;p&gt;To profit and grow your capital, you have to find the right investment strategy for you by dealing with your personal risk profile. Your &lt;strong&gt;risk profile&lt;/strong&gt; will show which investments you correspond to and influences your investment strategy.&lt;/p&gt;

&lt;h2&gt;
  
  
  📊 Investment risk profiles
&lt;/h2&gt;

&lt;p&gt;Four main factors have an impact on your risk profile:&lt;/p&gt;

&lt;p&gt;🔹 &lt;strong&gt;Risk tolerance&lt;/strong&gt; (how well you as an investor can cope emotionally with losses on your investments)&lt;/p&gt;

&lt;p&gt;&lt;em&gt;How much money are you emotionally ready to lose in the worse case?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The higher the personal risk tolerance, the higher the proportion of high-risk investments and asset diversification.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;🔹 &lt;strong&gt;Risk capacity&lt;/strong&gt; (the risk you can take according to your financial situation)&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Do you have a regular and secure income?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The higher your regular income, the higher the risk you can take.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;🔹 &lt;strong&gt;Knowledge of finance&lt;/strong&gt; (Level of financial knowledge and experience with securities)&lt;/p&gt;

&lt;p&gt;&lt;em&gt;How well do you understand financial products?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The more you deal with investments, the better you can assess the risks.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;🔹 &lt;strong&gt;Investment goal&lt;/strong&gt; (It influences the money return from your investment that you want to achieve)&lt;/p&gt;

&lt;p&gt;&lt;em&gt;What do you want to achieve with your investment?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The higher the money return, the higher the risk you must take.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;Have you given enough thought to your risk profile? Then you are ready actively to manage the risk of your investments – &lt;em&gt;asset class risk*&lt;/em&gt; for your investment portfolio.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Asset_classes"&gt;Asset classes* include stocks, fixed income, cash, foreign currencies, real estate, commodities, etc.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Assets you can invest in, depending on your risk-taking capability – your &lt;a href="https://en.wikipedia.org/wiki/Asset_allocation"&gt;asset allocation strategy.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;According to the book &lt;a href="https://amzn.to/2OIdfFl"&gt;“Souverän investieren mit Indexfonds und ETFs”&lt;/a&gt; by Gerd Kommer (unfortunately, I could find only in the German language), we can divide asset risk into four categories we would end up as follows:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The conservative investor&lt;/strong&gt; is very risk-averse and saves for emergencies. They seek stable returns and are less concerned about growth; they often lack time to actively monitor investments.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The balanced investor&lt;/strong&gt; tolerates a little more risk that the conservative investor. They are long-term investors who don’t need returns immediately and want to achieve some growth potential for their investments. They might entail some fluctuations in value, but with low volatility than the overall investment market.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The growth investor&lt;/strong&gt; is a risk-seeking investor whose investments are more risky assets like stocks and ETFs. They want good growth potential and don’t need current returns. They face a fair amount of volatility, but not as much as a portfolio invested in equities exclusively. Such investors might be unemotional about the process while being active in portfolio management.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The aggressive growth investor&lt;/strong&gt; is an investor of a very high-risk tolerance. The risk-proneness of this risky portfolio is at least 70%. They may be active day traders at online brokerages, actively follow the stock markets (even if they don’t execute dozens of trades each month).&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That motivated me to implement a small quiz, that will help you define &lt;a href="https://ilonacodes.com/investor-profile/"&gt;which type of an investor you are, and which asset risk you are capable of taking, and in which proportion.&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Quiz implementation
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;First, we'll make sure that the answer options are assigned a specific weight: negative value for this being a more risk-averse option, and positive value for this being a more risk-seeking option.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Then we'll sum up all the weighted values for each question.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Finally, we'll determine ranges at which “conservative” investor becomes balanced, and at which balanced becomes growth, and at which growth becomes aggressive-growth.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The result is in which range the riskiness score lies—that’s the investor profile.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here’s a straightforward way of implementing that:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// ©2020 Ilona Codes. All rights reserved.&lt;/span&gt;
&lt;span class="c1"&gt;// Playing with weight values changes results&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;weights&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;A&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;B&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;C&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;D&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;determineInvestorType&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;questions&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="c1"&gt;// we initialize answer option counts&lt;/span&gt;
    &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;counts&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;A&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;B&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;C&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;D&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="p"&gt;};&lt;/span&gt;

    &lt;span class="c1"&gt;// we count how many answers are of each option&lt;/span&gt;
    &lt;span class="nx"&gt;questions&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;forEach&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;question&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nx"&gt;counts&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;question&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;chosen&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="p"&gt;});&lt;/span&gt;

    &lt;span class="c1"&gt;// we calculate the weighted score&lt;/span&gt;
    &lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;score&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nb"&gt;Object&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;keys&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;counts&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;forEach&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;letter&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nx"&gt;score&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="nx"&gt;weights&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;letter&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="nx"&gt;counts&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;letter&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;
    &lt;span class="p"&gt;});&lt;/span&gt;

    &lt;span class="c1"&gt;// we determine in which range does the score lie&lt;/span&gt;
    &lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;investorType&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;score&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="mi"&gt;5&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nx"&gt;investorType&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;conservative&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;else&lt;/span&gt; &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;score&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nx"&gt;investorType&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;balanced&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;else&lt;/span&gt; &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;score&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nx"&gt;investorType&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;growth&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;else&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nx"&gt;investorType&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;aggressive_growth&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;

    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="na"&gt;investorType&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;investorType&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="p"&gt;};&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Of course, the sophistication of this algorithm can be increased at will!&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Your investing strategy should reflect your personal investor profile.&lt;/strong&gt; Knowing which one you are could help you put your investments to work in a way that fits your personality, preferences, and goals. To help you figure out it quickly and easily, you can take this quiz: &lt;a href="https://ilonacodes.com/investor-profile/"&gt;“What’s Your Developer-Investor Personality?”&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Disclaimer: No rush, no push! Only you are responsible for setting up your investment portfolio in the way you feel comfortable with. The test presents exemplary types of investment structures with deviations, and cannot be construed as investment advice.&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  💬 Conclusion
&lt;/h2&gt;

&lt;p&gt;All returns are derived from an assumption of risk. Each investor has their own risk tolerance, and different investment objectives require taking on different levels of risk.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Over 90% of investment returns are determined by how investors allocate their assets vs. security selection, market timing, and other factors.”—Brinson, Singer, and Beebower, ‘Determinants of Portfolio Performance II: An Update,’ Financial Analysts Journal&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Within your asset allocation, you will want to diversify among industries, sectors, and other risk factors to mitigate downside volatility, alongside some bonds to provide an equity hedge.&lt;/p&gt;

&lt;p&gt;That’s why you need to determine your portfolio allocation based on your propensity for risk, knowledge of finance, and investment goals.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>motivation</category>
      <category>beginners</category>
      <category>developer</category>
    </item>
  </channel>
</rss>
