DIY Stock Tracker using Python and Google BigQuery.

Praneeth Kandula
Analytics Vidhya
Published in
4 min readJan 31, 2021

Photo by M. B. M. on Unsplash

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…