Pull historical market data!
python marketPullDriver.py [ticker] [priceType]
ticker = ['AAPL', 'JNJ', ...] # Any valid stock ticker, capitalization agnostic
priceType = ['open', 'close', 'low', 'high']
'open': price of stock at the opening bell of each day
'close': price of stock at the closing bell of each day
'low': lowest stock price on the day
'high': highest stock price on the day
This will result in a graph with date vs. priceType price for your stock.