1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-25 23:51:32 +00:00
This commit is contained in:
2021-05-21 19:58:56 -07:00
parent fcd6afec60
commit a07d29cbfe
2 changed files with 2 additions and 2 deletions

View File

@@ -382,7 +382,7 @@ class IEX_Symbol:
if "companyName" in data:
m += f"Company Name: {data['companyName']}\n"
if "marketcap" in data:
m += f"Market Cap: {data['marketcap']:,}\n"
m += f"Market Cap: ${data['marketcap']:,}\n"
if "week52high" in data:
m += f"52 Week (high-low): {data['week52high']:,} "
if "week52low" in data: