yahoo-historical icon indicating copy to clipboard operation
yahoo-historical copied to clipboard

Downloads historical EOD (end of day) prices from yahoo finance

Results 1 yahoo-historical issues
Sort by recently updated
recently updated
newest added

I tested the code in Python3.7: ``` from yahoo_historical import Fetcher import datetime import time # create unix timestamp representing January 1st, 2007 timestamp = time.mktime(datetime.datetime(2007, 1, 1).timetuple()) data =...