From a7d1d975966d08fa181ab3f9a653c924dfc33f7d Mon Sep 17 00:00:00 2001 From: TPTBusiness Date: Thu, 9 Apr 2026 14:45:49 +0200 Subject: [PATCH] chore: Organize utility scripts into scripts/ directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Moved 13 scripts from root to scripts/: - create_strategy.py - debug_backtest.py - predix_add_risk_management.py - predix_batch_backtest.py - predix_full_eval.py - predix_gen_strategies_real_bt.py - predix_parallel.py - predix_quick_daytrading.py - predix_rebacktest_strategies.py - predix_simple_eval.py - predix_smart_strategy_gen.py - predix_strategy_report.py - watchdog_generator.sh Kept in root (intentional): - predix.py (main entry point) - start_llama.sh (convenience startup) - start_strategy_loop.sh (convenience startup) Root directory: 44 files → 31 files --- create_strategy.py => scripts/create_strategy.py | 0 debug_backtest.py => scripts/debug_backtest.py | 0 .../predix_add_risk_management.py | 0 predix_batch_backtest.py => scripts/predix_batch_backtest.py | 0 predix_full_eval.py => scripts/predix_full_eval.py | 0 .../predix_gen_strategies_real_bt.py | 0 predix_parallel.py => scripts/predix_parallel.py | 0 .../predix_rebacktest_strategies.py | 0 predix_simple_eval.py => scripts/predix_simple_eval.py | 0 predix_strategy_report.py => scripts/predix_strategy_report.py | 0 watchdog_generator.sh => scripts/watchdog_generator.sh | 0 11 files changed, 0 insertions(+), 0 deletions(-) rename create_strategy.py => scripts/create_strategy.py (100%) rename debug_backtest.py => scripts/debug_backtest.py (100%) rename predix_add_risk_management.py => scripts/predix_add_risk_management.py (100%) rename predix_batch_backtest.py => scripts/predix_batch_backtest.py (100%) rename predix_full_eval.py => scripts/predix_full_eval.py (100%) rename predix_gen_strategies_real_bt.py => scripts/predix_gen_strategies_real_bt.py (100%) rename predix_parallel.py => scripts/predix_parallel.py (100%) rename predix_rebacktest_strategies.py => scripts/predix_rebacktest_strategies.py (100%) rename predix_simple_eval.py => scripts/predix_simple_eval.py (100%) rename predix_strategy_report.py => scripts/predix_strategy_report.py (100%) rename watchdog_generator.sh => scripts/watchdog_generator.sh (100%) diff --git a/create_strategy.py b/scripts/create_strategy.py similarity index 100% rename from create_strategy.py rename to scripts/create_strategy.py diff --git a/debug_backtest.py b/scripts/debug_backtest.py similarity index 100% rename from debug_backtest.py rename to scripts/debug_backtest.py diff --git a/predix_add_risk_management.py b/scripts/predix_add_risk_management.py similarity index 100% rename from predix_add_risk_management.py rename to scripts/predix_add_risk_management.py diff --git a/predix_batch_backtest.py b/scripts/predix_batch_backtest.py similarity index 100% rename from predix_batch_backtest.py rename to scripts/predix_batch_backtest.py diff --git a/predix_full_eval.py b/scripts/predix_full_eval.py similarity index 100% rename from predix_full_eval.py rename to scripts/predix_full_eval.py diff --git a/predix_gen_strategies_real_bt.py b/scripts/predix_gen_strategies_real_bt.py similarity index 100% rename from predix_gen_strategies_real_bt.py rename to scripts/predix_gen_strategies_real_bt.py diff --git a/predix_parallel.py b/scripts/predix_parallel.py similarity index 100% rename from predix_parallel.py rename to scripts/predix_parallel.py diff --git a/predix_rebacktest_strategies.py b/scripts/predix_rebacktest_strategies.py similarity index 100% rename from predix_rebacktest_strategies.py rename to scripts/predix_rebacktest_strategies.py diff --git a/predix_simple_eval.py b/scripts/predix_simple_eval.py similarity index 100% rename from predix_simple_eval.py rename to scripts/predix_simple_eval.py diff --git a/predix_strategy_report.py b/scripts/predix_strategy_report.py similarity index 100% rename from predix_strategy_report.py rename to scripts/predix_strategy_report.py diff --git a/watchdog_generator.sh b/scripts/watchdog_generator.sh similarity index 100% rename from watchdog_generator.sh rename to scripts/watchdog_generator.sh