RAPTOR v18.4: Исправлена отчетность, активированы выходные

This commit is contained in:
root
2026-04-18 23:26:45 +03:00
commit ef0958239e
312 changed files with 54247 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
from datetime import datetime
from typing import Generator, Optional, Protocol
from t_tech.invest import CandleInterval, HistoricCandle
class CandleGetter(Protocol):
def get_all_candles( # pragma: no cover
self,
*,
from_: datetime,
to: Optional[datetime],
interval: CandleInterval,
figi: str,
) -> Generator[HistoricCandle, None, None]:
pass