Skip to main content

Use SPARKLINE column chart to create price chart with reference price

I own and follow several stocks in my investment portfolio. I pick a reference price for each stock. To effectively track the movement of a stock, I need to visualize its 52-week prices based on the reference price that I determined. In this post, I explain how to do so with the SPARKLINE column chart in Google Sheets.

Use SPARKLINE column chart to show stock price trend in Google Sheets

Concept

Everyone who uses the GOOGLEFINANCE function and SPARKLINE function in Google Sheets can easily find examples in this documentation about drawing a chart inside a cell to display stock price trends during the last 30 days, last 52 weeks, etc. For example, to display the last 52-week price trend for the NVIDIA Corporation stock:

SPARKLINE(INDEX(GOOGLEFINANCE("NVDA","price",EDATE(TODAY(),-12),TODAY())))

Use SPARKLINE function to display the last 52-week price trend for the NVIDIA Corporation stock in Google Sheets

However, those are only the simplest uses of the SPARKLINE function and can only offer little information for watching stocks. As I have a reference price for each stock in my watching list, I need to benchmark the price movement with that reference price. Concretely:

  • If stock prices are lower than the reference price, I want to draw those in red color.
  • If stock prices are greater than the reference price, I want to draw those in green color.

After spending lots of time learning available options for the SPARKLINE function, I find the solution as follows:

  1. As usual, I use the GOOGLEFINANCE function to get historical prices of a stock, for example, during the last 30 days, during the last 52 weeks, etc.
  2. I then subtract the reference price from those prices returned by the GOOGLEFINANCE function. As a result, I have negative and positive numbers but the general trend is conserved.
  3. I then put those offset prices into the SPARKLINE function and specify the options so that:
    • The negative numbers are plotted with red color.
    • The positive numbers are plotted with green color.

The idea of this solution is quite simple as explained above. However, there are still several technical details worth mentioning for the implementation.

Implementation

Get last 52-week prices of stocks in Google Sheets

For example, to get the last 52-week prices for the Microsoft Corporation stock, I would use the formula below:

GOOGLEFINANCE("MSFT","price",EDATE(TODAY(),-12),TODAY())

Where:

  • MSFT is the symbol for the Microsoft Corporation stock
  • EDATE(TODAY(),-12) is the date 12 months (as same as 52 weeks) before today.

As a result, I have a table of two columns Date and Close.

Extract only the prices and ignore the dates

In the post GOOGLEFINANCE Best Practices, I explained many useful practices for working with the GOOGLEFINANCE function in Google Sheets. Among those practices, I explained how to extract only the prices and ignore the dates from the result returned by the GOOGLEFINANCE function. This is necessary because I only need the prices as input to the SPARKLINE function. Here is an example:

=SLICE(INDEX(GOOGLEFINANCE("NASDAQ:TSLA","price",TODAY()-7,TODAY()),0,2),1)

Keep only the price with GOOGLEFINANCE

Choose the reference price

The reference price for each stock can be chosen based on personal preference. For example:

  • For stocks that I own in my investment portfolio, I use their FIFO unit cost basis as the reference prices. I have explained in details in the post Compute cost basis of stocks with FIFO method in Google Sheets.
  • For stocks that I do not own in my investment portfolio, I could pick a price that I consider reasonable for myself.

Once again, the choice depends totally on personal preference.

Subtract the reference price from an array of prices

To subtract the reference price from an array of prices, I use the ARRAYFORMULA function in Google Sheets. For example, to subtract 100 from the prices of the TESLA stock last 7 days, I would use:

Use the ARRAYFORMULA function to subtract the reference price from an array of prices

Use SPARKLINE column chart

With the prices offset by the reference price, I can put them into the SPARKLINE function and specify the options so that:

  • The chart is a column chart.
  • The negative numbers are plotted with red color.
  • The positive numbers are plotted with green color.

For example, below is the result of plotting the last 52-week prices of the Amazon.com, Inc. stock with the reference price is 125.

=SPARKLINE(ARRAYFORMULA(SLICE(INDEX(GOOGLEFINANCE("AMZN","price",EDATE(TODAY(),-12),TODAY()),0,2),1)-125),{"charttype","column";"negcolor","red";"color","green"})

Use SPARKLINE column chart to show stock price trend of AMAZON stock in Google Sheets

Demo

Demo spreadsheet: 52-Week Range Column Sparkline Chart With Reference Price In Google Sheets

Conclusion

This post is part of a series of posts about effectively using the SPARKLINE function and the GOOGLEFINANCE function for managing a stock investment in Google Sheets.

Use the ARRAYFORMULA function to subtract the reference price from an array of prices
52-week range price indicator chart with SPARKLINE in Google Sheets
Use SPARKLINE column chart to show stock price trend of AMAZON stock in Google Sheets

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

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...
Compute daily evolutions of a stock portfolio with Google Sheets and Apps Script

Compute daily evolutions of a stock portfolio with Google Sheets and Apps Script

When it comes to investment, it is not only important to know the up-to-date state of portfolio but also to track its evolution day by day. We need to know on a specific day, how much money has been invested in the portfolio, the current market value of owned shares, the available cash and the current profit. Visualizing those historical data points on a time-based graph helps us to identify which transactions were good and which were bad. This post shows how to compute automatically those historical data points by using data in Transactions sheet and the built-in GOOGLEFINANCE function of Google Sheets. A sample spreadsheet can be found in this post Demo stock portfolio tracker with Google Sheets . You can take a look at the sample spreadsheet 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.
Time value of money, Present Value (PV), Future Value (FV), Net Present Value (NPV), Internal Rate of Return (IRR)

Time value of money, Present Value (PV), Future Value (FV), Net Present Value (NPV), Internal Rate of Return (IRR)

Why do I use my current money to invest in the stock market? Because I expect to have more money in the future. Why do I need more money in the future than now? Because of many reasons, the same amount of money will have less purchasing power than today. Therefore my investment needs to generate more money than today to protect my purchasing power in the future. That is the main concept of the time value of money where one dollar today is worth more than one dollar in the future.
GOOGLEFINANCE Best Practices

GOOGLEFINANCE Best Practices

Anyone using Google Sheets to manage stock portfolio investment must know how to use the GOOGLEFINANCE function to fetch historical prices of stocks. As I have used it extensively to manage my stock portfolio investment in Google Sheets , I have learned several best practices for using the GOOGLEFINANCE function that I would like to share in this post.
Create dividend income tracker with Google Data Studio

Create dividend income tracker with Google Data Studio

With transactions registered, it is easy to create a dividend income tracker with Google Sheets. However, a dividend income tracker in Google Sheets is not interactive. Instead of having different pivot tables and switching forth and back among them, I can create an interactive dividend income tracker with a single-page report on Google Data Studio. In this post, I explain how to create a dividend income tracker with Google Data Studio.
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.
Demo stock investment portfolio tracker with Google Data Studio

Demo stock investment portfolio tracker with Google Data Studio

As explained in the post Create personal stock portfolio tracker with Google Sheets and Google Data Studio , a personal stock portfolio tracker consists of 2 main elements: a spreadsheet in Google Sheets and an interactive dashboard in Google Data Studio. The dashboard below is built with Google Data Studio and visualizes data stored in the spreadsheet that can be found in the post Demo stock portfolio tracker with Google Sheets . The dashboard below is not an image, it is a real one and is interactive. You can change some filters to see data from a different perspective. For instance, you can change the date range or select a particular stock. NOTE: An enhanced version was published at Create personal stock portfolio tracker with Google Sheets and Google Data Studio .
How to convert column index into letters with Google Sheets

How to convert column index into letters with Google Sheets

In Google Sheets, rows are indexed numerically, starting from 1, but columns are indexed alphabetically, starting from A. Hence, it is pretty straightforward to work with rows and trickier to work with columns as we need to convert between column index and corresponding letters. For example, what are the letters of column 999th in Google Sheets? In this post, we will look at how to convert a column index into its corresponding letters by using the built-in functions of Google Sheets. What are letters of the column 999th in a spreadsheet?