Schwab ETF Tracker

How simple is the GOOGLEFINANCE() function?

I created this simple project for daily price tracking of the ETFs in which I invest. It's nothing special, but I wanted to include it here for me, myself, and I. 

This is a great project accessible to anyone! 

All you need to do is open Google Sheets and leverage the GOOGLEFINANCE function.

Here's a step-by-step guide along with code syntax:

Inserting Ticker Symbol:

Using GOOGLEFINANCE:

=GOOGLEFINANCE(ticker, [attribute], [start_date], [end_date], [interval])

See above argument definitions below:

=GOOGLEFINANCE("AAPL", "close", TODAY()-30, TODAY(), "DAILY")

Additional Attributes:

For example:

=GOOGLEFINANCE("AAPL", "high", TODAY()-30, TODAY(), "DAILY")

Formatting:

Refreshing Data:

While GOOGLEFINANCE is convenient, it may have limitations, and the data may be slightly delayed. If you need more real-time data or additional features, you will want to explore dedicated financial data APIs or services.