added 2 dp back to point change and current price
This formatting is only specifically for stocks
This commit is contained in:
parent
7b659f55de
commit
0cf567625d
@ -1245,11 +1245,11 @@ class StockTicker():
|
||||
arrow, change = self.getArrow(change)
|
||||
|
||||
percent_change = '%.2f' % abs(float(info['percent_change'])) + '%'
|
||||
point_change = str(abs(change))
|
||||
point_change = '%.2f' % abs(change)
|
||||
|
||||
print(percent_change, point_change)
|
||||
|
||||
current = str(float(info['current'])) #TEXT
|
||||
current = '%.2f' % float(info['current']) #TEXT
|
||||
|
||||
|
||||
|
||||
@ -1329,10 +1329,10 @@ class StockTicker():
|
||||
if all_stocks_settings["percent"]:
|
||||
change = '%.2f' % abs(float(info['percent_change'])) + '%'
|
||||
else:
|
||||
change = str(abs(change))
|
||||
change = '%.2f' % abs(change)
|
||||
|
||||
|
||||
current = str(float(info['current'])) #TEXT
|
||||
current = '%.2f' % float(info['current']) #TEXT
|
||||
midFrame = self.textToImageProf(ticker, current, change, arrow, font=ImageFont.load("./fonts/6x10.pil")) #IMAGE THE TEXT
|
||||
|
||||
if all_stocks_settings['logos']:
|
||||
|
Loading…
Reference in New Issue
Block a user