fix(backtest): remove default data_source from get_historical_prices

This commit is contained in:
Bu5hm4nn
2026-03-30 14:28:07 +02:00
parent 2d1ecc2fcf
commit f31b83668e

View File

@@ -135,7 +135,7 @@ class BacktestPageService:
return self._yfinance_provider
def get_historical_prices(
self, symbol: str, start_date: date, end_date: date, data_source: str = "synthetic"
self, symbol: str, start_date: date, end_date: date, data_source: str
) -> list[DailyClosePoint]:
"""Load historical prices from the specified data source.