Data Retrieval

Retrieves market data & ticker object from yahoo finance from quantmod.markets import getData, getTicker

from quantmod.markets import getData, getTicker

# Get stock price data
aapl = getData('AAPL', period='5d')

# Get ticker object
spy = getTicker('SPY')

# Print the stock price data
print(aapl)

# Print the ticker object output
print(spy.options[:5])