Implements FastAPI backend with ML model support for energy trading, including price prediction models and RL-based battery trading policy. Features dashboard, trading, backtest, and settings API routes with WebSocket support for real-time updates.
10 lines
177 B
Python
10 lines
177 B
Python
from app.utils.logger import get_logger
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
async def monitoring_task():
|
|
logger.debug("Running monitoring task")
|
|
|
|
|
|
__all__ = ["monitoring_task"]
|