refactor: Update import path for get_stock_data function

This commit is contained in:
Bobby (aider) 2025-02-13 23:01:57 -08:00
parent ccb62b1cb9
commit 6238550ff4

View File

@ -6,7 +6,7 @@ from backtesting import Backtest, Strategy
from typing import Dict, List, Union from typing import Dict, List, Union
import itertools import itertools
from datetime import datetime, timedelta from datetime import datetime, timedelta
from src.utils.common_utils import get_stock_data from utils.common_utils import get_stock_data
class DynamicStrategy(Strategy): class DynamicStrategy(Strategy):
"""Dynamic strategy class that can be configured through the UI""" """Dynamic strategy class that can be configured through the UI"""