changed file source?

This commit is contained in:
yasha 2025-04-16 22:43:45 +00:00
parent 75c3f82f2a
commit 57795aeefa
2 changed files with 9 additions and 5 deletions

View File

@ -47,11 +47,15 @@ logging.basicConfig(
)
logger = logging.getLogger(__name__)
# --- Configuration ---
# V7 Update: Add DB parameters
DB_DIR = '../downloaded_data' # V7 Fix: Point to correct relative path for V6 data
# --- Configuration Parameters ---
# V7.7 Move configuration to top-level for clarity
# V7.7 Adjusted path relative to main.py's location inside gru_sac_predictor/
DB_DIR = '../../data/crypto_market_data' # New path to crypto data
# Data Parameters
EXCHANGE = 'binance'
TICKER = 'BTC-USD' # Example ticker
EXCHANGE = 'COINBASE' # Example exchange
START_DATE = '2025-03-01' # Example start date - NOTE: VERY SHORT!
END_DATE = '2025-03-10' # Example end date - NOTE: VERY SHORT!
INTERVAL = '1min' # Data interval to fetch and use

View File

@ -7,4 +7,4 @@ joblib
scikit-learn
tqdm
PyYAML
TA-Lib
# TA-Lib