Get Stock Data from Yahoo Finance in Google Spreadsheets

Google Finance is no longer integrated with Google Apps Script but you can still use Yahoo Finance with the URLFetch service to bring stock data from the Yahoo website into your Google Spreadsheet. Yahoo Finance data is available in CSV format that can be parsed with parseCSV method of Google Scripts.

function getYahooFinanceData(stockSymbol, startDate, endDate) {
  stockSymbol = stockSymbol || 'GOOG';

  var start = new Date(startDate),
    end = new Date(endDate),
    data = [];

  var url =
    'http://real-chart.finance.yahoo.com/table.csv?s=' +
    stockSymbol +
    '&a=' +
    start.getMonth() +
    '&b=' +
    start.getDate() +
    '&c=' +
    start.getFullYear() +
    '&d=' +
    end.getMonth() +
    '&e=' +
    end.getDate() +
    '&f=' +
    end.getFullYear() +
    '&g=d&ignore=.csv';

  var response = UrlFetchApp.fetch(url, { muteHttpExceptions: true });

  if (response.getResponseCode()) {
    var textFile = response.getContentText();

    // If the URL is incorrect, Yahoo will return a 404 html page and not a CSV
    if (textFile.indexOf('') == -1) {
      var csv = Utilities.parseCsv(textFile);
      for (var i = csv.length - 1; i > 1; i--) {
        data.push(csv[i]);
      }
    }
  }

  return data;
}
Amit Agarwal

Amit Agarwal

Google Developer Expert, Google Cloud Champion

Amit Agarwal is a Google Developer Expert in Google Workspace and Google Apps Script. He holds an engineering degree in Computer Science (I.I.T.) and is the first professional blogger in India.

Amit has developed several popular Google add-ons including Mail Merge for Gmail and Document Studio. Read more on Lifehacker and YourStory

0

Awards & Titles

Digital Inspiration has won several awards since it's launch in 2004.

Google Developer Expert

Google Developer Expert

Google awarded us the Google Developer Expert award recogizing our work in Google Workspace.

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards in 2017.

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional (MVP) title for 5 years in a row.

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator title recognizing our technical skill and expertise.

Email Newsletter

Sign up for our email newsletter to stay up to date.

We will never send any spam emails. Promise.