1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-25 07:31:48 +00:00

Resolve "Add change percent to Market Data"

This commit is contained in:
2023-04-09 00:41:57 +00:00
parent e63dc7f46b
commit 22ed74d194
2 changed files with 14 additions and 3 deletions

View File

@@ -32,8 +32,8 @@ class Stock(Symbol):
def __init__(self, symbol: str) -> None:
self.symbol = symbol
self.id = symbol
self.name = "$" + symbol
self.tag = "$" + symbol.upper()
self.name = "$" + symbol.upper()
self.tag = "$" + symbol.lower()
class Coin(Symbol):