mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-15 03:23:52 +00:00
10 lines
137 B
Python
10 lines
137 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Balance:
|
|
exchange: str
|
|
currency: str
|
|
available: float
|
|
locked: float
|