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
+3 -3
View File
@@ -3,10 +3,10 @@
Option A: Generate Kronos predicted-return factor from EUR/USD 1-min data.
Runs Kronos-mini inference in daily strides (96 bars/day) over all available
OHLCV data and saves the resulting factor for use in Predix's factor pipeline.
OHLCV data and saves the resulting factor for use in NexQuant's factor pipeline.
Usage:
conda activate predix
conda activate nexquant
python scripts/kronos_factor_gen.py
python scripts/kronos_factor_gen.py --context 512 --pred 96 --device cuda
python scripts/kronos_factor_gen.py --device cpu # slower but no GPU needed
@@ -71,7 +71,7 @@ def main():
print(f"\nSample (first 5):")
print(factor_df.head())
# Save metadata for predix.py top / best integration
# Save metadata for nexquant.py top / best integration
meta = {
"factor_name": f"KronosPredReturn_p{args.pred}",
"description": f"Kronos-mini predicted return, {args.pred}-bar horizon",