1from abc import ABC, abstractmethod 2 3 4class BaseStrategy(ABC): 5 @abstractmethod 6 def __init__(self, figi: str, *args, **kwargs): 7 pass 8 9 @abstractmethod 10 async def start(self): 11 pass 12 13