1
0
mirror of https://gitlab.com/simple-stock-bots/simple-stock-bot.git synced 2025-06-15 23:06:40 +00:00

Fixed incorrect ticker change

This commit is contained in:
Anson 2019-01-13 11:55:28 -07:00
parent 26713ce496
commit 69e5342f74

View File

@ -16,7 +16,7 @@ def tickerQuote(tickers):
stockData[ticker + 'Price'] = \
IEXData[ticker]['quote']['latestPrice']
stockData[ticker +
'Change'] = IEXData[ticker]['quote']['changePercent'] * 10
'Change'] = IEXData[ticker]['quote']['changePercent'] * 100
stockData[ticker + 'Image'] = stockLogo(ticker)
print('Quote Gathered')
return stockData