DIY Stock Tracker using Python and Google BigQuery.
Published in
4 min readJan 31, 2021
--
In this post we will write a python script that fetches stock market data using the yfinance
package, processes the data and uploads the data into a Google BigQuery table which can be used for further analysis or visualization.
Fetch Stock Market Data
To fetch the data of a particular stock, we need the stock’s ticker symbol. Once you…