freqtrade_origin/freqtrade/rpc/api_server/webserver_bgwork.py
2024-05-13 07:10:25 +02:00

39 lines
888 B
Python

from typing import Any, Dict, Literal, Optional, TypedDict
from uuid import uuid4
from freqtrade.exchange.exchange import Exchange
class JobsContainer(TypedDict):
category: Literal["pairlist"]
is_running: bool
status: str
progress: Optional[float]
result: Any
error: Optional[str]
class ApiBG:
# Backtesting type: Backtesting
bt: Dict[str, Any] = {
"bt": None,
"data": None,
"timerange": None,
"last_config": {},
"bt_error": None,
}
bgtask_running: bool = False
# Exchange - only available in webserver mode.
exchanges: Dict[str, Exchange] = {}
# Generic background jobs
# TODO: Change this to TTLCache
jobs: Dict[str, JobsContainer] = {}
# Pairlist evaluate things
pairlist_running: bool = False
@staticmethod
def get_job_id() -> str:
return str(uuid4())