- APScheduler for daily snapshots (18:30 weekdays) - ReturnsCalculator with CAGR, TWR, MDD, volatility - Portfolio history page with snapshots and returns tabs - FastAPI lifespan integration for scheduler Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
164 B
Python
7 lines
164 B
Python
"""
|
|
Background jobs module.
|
|
"""
|
|
from jobs.scheduler import scheduler, start_scheduler, stop_scheduler
|
|
|
|
__all__ = ["scheduler", "start_scheduler", "stop_scheduler"]
|