Skip to main content

Manage Stock Transactions With Google Sheets

The first task of building a stock portfolio tracker is to design a solution to register transactions. A transaction is an event when change happens to a stock portfolio, for instance, selling shares of a company, depositing money, or receiving dividends. Transactions are essential inputs to a stock portfolio tracker and it is important to keep track of transactions to make good decisions in investment. In this post, I will explain step by step how to keep track of stock transactions with Google Sheets.

How to track transactions of a stock investment portfolio with Google Sheets

Define the structure of transactions

In the example, I assume that a transaction generally has 5 main attributes:

  1. Date: It is the moment when a transaction happened.

  2. Type: It can be one of the following values:

    • DEPOSIT: When money is added to the portfolio
    • BUY: When money in the portfolio is used to buy shares of a company
    • SELL: When money is added into the portfolio by selling shares of a company
    • DIVIDEND: When dividend money is added to the portfolio by owning a stock
    • WITHDRAWAL: When money is taken out of the portfolio
  3. Symbol: It is the ticker symbol which is recognizable by the GOOGLEFINANCE function of Google Sheets

  4. Amount: It represents the money value of the transaction. The amount can be negative or positive:

    • Positive (+): Money goes into the portfolio. They are for transactions of type: DEPOSIT, SELL, and DIVIDEND
    • Negative (-): Money goes out of the portfolio. They are for transactions of type: BUY and WITHDRAWAL
  5. Shares: It represents the number of shares of a company involved in this transaction.

    • It is only applicable for transactions of type BUY, SELL, and DIVIDEND.
    • For DEPOSIT and WITHDRAWAL transactions, the cell is empty.

    The number here can be negative or positive:

    • Positive (+): Shares of a company are increased in the portfolio, i.e. buying.
    • Negative (-): Shares of a company are decreased in the portfolio, i.e. selling.

Notes

  1. In this tutorial, a transaction's amount is supposed to include by default fees if applicable.

  2. As a dividend can be paid in stock or in cash, so, to keep it simple:

    • If a dividend is paid in cash, it can be represented as a DIVIDEND transaction whose amount is greater than 0, and shares are greater than 0, but it does not mean more shares are added to the portfolio for this stock. It will help to know the amount of dividend for each share.
    • If a dividend is paid in stock, there are 2 options:
      • 1st: it can be represented as a BUY transaction whose amount is 0 and shares is greater than 0. It is considered as getting shares for free.
      • 2nd: one can receive the dividend amount in cash and then use that cash to buy shares at the predefined price by the company. That means a dividend paid in stock can be represented by a DIVIDEND transaction and a BUY transaction. For example, on may 2019, I had 18 shares of Société Générale (EPA:GLE). The company distributed a dividend of 2.20 euros per share with two options: by cash or by stock at the price of 22.31 euros. With 18 shares, I received 39.60 euros of dividends, then I used this amount and extra money to buy 2 shares at 22.31 euros. Here are how I registered the transactions:

Date Type Symbol Amount Shares
31/05/2019 BUY EPA:GLE -44.62 2
31/05/2019 DIVIDEND EPA:GLE 39.60 18

Use Google Sheets to register transactions

With the definition for transaction above, we can now implement the solution with Google Sheets:

  • Create new spreadsheet Portfolio
  • Create new sheet Transactions
  • Each attribute of a transaction is represented by a column
  • Use the cells A1:E1 for names of the 5 attributes: Date, Type, Symbol, Amount, Shares
  • Format the column A as Date time and columns D, E as Number

Demo

You can take a look at the sample spreadsheet in Demo stock portfolio tracker with Google Sheets to have an idea of how the data is organized and related. It is possible to make a copy of the spreadsheet to study it thoroughly.

Note

To better understand the overall concept, please check out this post Create personal stock portfolio tracker with Google Sheets and Google Data Studio.

References

Disclaimer

The post is only for informational purposes and not for trading purposes or financial advice.

Feedback

If you have any feedback, question, or request please:

Support this blog

If you value my work, please support me with as little as a cup of coffee! I appreciate it. Thank you!

Share with your friends

If you read it this far, I hope you have enjoyed the content of this post. If you like it, share it with your friends!

Comments

  1. Hi, I find your blog really helpful as I'm building my own tracker too. May I ask if your tracker works for short selling too?
    J

    ReplyDelete
    Replies
    1. Honestly, I cannot tell because I've never done short selling with my stock investment portfolio. You can try it yourself by putting your own short selling transactions in the stock investment tracker and see if it fits your expectations. Don't forget to share your result in a future comment! Thanks!

      Delete

Post a Comment

Popular posts

Compute cost basis of stocks with FIFO method in Google Sheets

Compute cost basis of stocks with FIFO method in Google Sheets

After selling a portion of my holdings in a stock, the cost basis for the remain shares of that stock in my portfolio is not simply the sum of all transactions. When selling, I need to decide which shares I want to sell. One of the most common accounting methods is FIFO (first in, first out), meaning that the shares I bought earliest will be the shares I sell first. As you might already know, I use Google Sheets extensively to manage my stock portfolio investment, but, at the moment of writing this post, I find that Google Sheets does not provide a built-in formula for FIFO. Luckily, with lots of effort, I succeeded in building my own FIFO solution in Google Sheets, and I want to share it on this blog. In this post, I explain how to implement FIFO method in Google Sheets to compute cost basis in stocks investing.
Create personal stock portfolio tracker with Google Sheets and Google Data Studio

Create personal stock portfolio tracker with Google Sheets and Google Data Studio

I have been investing in the stock market for a while. I was looking for a software tool that could help me better manage my portfolio, but, could not find one that satisfied my needs. One day, I discovered that the Google Sheets application has a built-in function called GOOGLEFINANCE which fetches current or historical prices of stocks into spreadsheets. So I thought it is totally possible to build my own personal portfolio tracker with Google Sheets. I can register my transactions in a sheet and use the pivot table, built-in functions such as GOOGLEFINANCE, and Apps Script to automate the computation for daily evolutions of my portfolio as well as the current position for each stock in my portfolio. I then drew some sort of charts within the spreadsheet to have some visual ideas of my portfolio. However, I quickly found it inconvenient to have the charts overlapped the table and to switch back and forth among sheets in the spreadsheet. That's when I came to know the existen...
Stock Correlation Analysis With Google Sheets

Stock Correlation Analysis With Google Sheets

Correlation is a statistical relationship that measures how related the movement of one variable is compared to another variable. For example, stock prices fluctuate over time and are correlated accordingly or inversely to one another. Understanding stock correlation and being able to perform analysis are very helpful in managing a stock portfolio investment. In this post, I explain in details how to perform correlation analysis among stocks in Google Sheets.
How to calculate the internal rate of return (IRR) and the net present value (NPV) of a stock portfolio with Google Sheets

How to calculate the internal rate of return (IRR) and the net present value (NPV) of a stock portfolio with Google Sheets

As a long-term investor, I need to know how to evaluate the performance of my stock portfolio. A simple return on investment calculation is not a good indicator for long-term investment because it does not take into account the holding duration, and cash flows involved during that period. A return on investment of 80% after 20 years is not as impressive as it sounds after 1 year. In this post, I explain the idea of using Google Sheets to calculate the internal rate of return (IRR) and the net present value (NPV) of a stock portfolio.
Slice array in Google Sheets

Slice array in Google Sheets

Many functions in Google Sheets return an array as the result. However, I find that there is a lack of built-in support functions in Google Sheets when working with an array. For example, the GOOGLEFINANCE function can return the historical prices of a stock as a table of two columns and the first-row being headers Date and Close. How can I ignore the headers or remove the headers from the results?
Monitor stock investment portfolio with Pivot table and GOOGLEFINANCE function in Google Sheets

Monitor stock investment portfolio with Pivot table and GOOGLEFINANCE function in Google Sheets

As an investor, it is important to know the latest state of the stock portfolio. We need to know what stocks currently owned in the portfolio, how many shares for each one, how much dividend or gain contributed so far by each stock, etc. As we have registered stock transactions in a spreadsheet with Google Sheets, we can easily have the latest update from the stock portfolio by using pivot tables and GOOGLEFINANCE function.
Demo how to use XIRR and XNPV functions of Google Sheets to calculate internal rate of return (IRR) and net present value (NPV) for a stock portfolio

Demo how to use XIRR and XNPV functions of Google Sheets to calculate internal rate of return (IRR) and net present value (NPV) for a stock portfolio

I have explained the idea of using Google Sheets functions to calculate internal rate of return (IRR) and net present value (NPV) for a stock portfolio . The process consists mainly of three steps: Identify cash flows from transactions managed in a Google Sheets spreadsheet Choose a discount rate based on personal preferences Apply XIRR and XNPV functions of Google Sheets In this post, I demonstrate step-by-step how to apply this process to calculate internal rate of return (IRR) and net present value (NPV) for a stock portfolio at 3 levels.
Compute cost basis of stocks with LIFO method in Google Sheets

Compute cost basis of stocks with LIFO method in Google Sheets

The Last In, First Out (LIFO) method is an accounting method used to calculate the cost basis of a stock portfolio. It is the opposite of the First In, First Out (FIFO) method, where the oldest shares are sold first. In the LIFO method, the most recent shares are sold first. In the previous post Compute cost basis of stocks with FIFO method in Google Sheets , I explained how to implement FIFO method in Google Sheets to compute cost basis in stocks investing. In this post, I explain how to implement LIFO method in Google Sheets to compute cost basis in stocks investing.