refactor: rename project from Predix to NexQuant

Rename all source files, scripts, tests, documentation, and configuration
from Predix/predix to NexQuant/nexquant across the entire codebase.
This commit is contained in:
TPTBusiness
2026-05-09 17:48:22 +02:00
parent 70029b4577
commit 9d6c6d1d5f
92 changed files with 3690 additions and 1015 deletions
+10 -10
View File
@@ -123,9 +123,9 @@ class TestWebDashboard:
class TestScriptsImportable:
def test_predix_full_eval(self):
def test_nexquant_full_eval(self):
import importlib
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/predix_full_eval.py")
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/nexquant_full_eval.py")
assert spec is not None
def test_extract_results(self):
@@ -153,24 +153,24 @@ class TestScriptsImportable:
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/kronos_model_eval.py")
assert spec is not None
def test_predix_add_risk_management(self):
def test_nexquant_add_risk_management(self):
import importlib
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/predix_add_risk_management.py")
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/nexquant_add_risk_management.py")
assert spec is not None
def test_predix_gen_strategies(self):
def test_nexquant_gen_strategies(self):
import importlib
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/predix_gen_strategies_real_bt.py")
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/nexquant_gen_strategies_real_bt.py")
assert spec is not None
def test_predix_quick_daytrading(self):
def test_nexquant_quick_daytrading(self):
import importlib
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/predix_quick_daytrading.py")
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/nexquant_quick_daytrading.py")
assert spec is not None
def test_predix_rebacktest_unified(self):
def test_nexquant_rebacktest_unified(self):
import importlib
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/predix_rebacktest_unified.py")
spec = importlib.util.spec_from_file_location("m", PROJECT_ROOT / "scripts/nexquant_rebacktest_unified.py")
assert spec is not None
def test_realistic_backtest_all(self):