5 lines
97 B
Python
5 lines
97 B
Python
class Status:
|
|
def __init__(self):
|
|
self.price = 0
|
|
self.candles = {"1m": [], "1h": []}
|