mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 15:37:44 +00:00
2cec08bc91
- Add rdagent/log/daily_log.py: daily-rotating structured logs per command (fin_quant, strategies, evaluate, parallel) with loguru; all.log combined sink - predix.py: route TeeWriter output to logs/YYYY-MM-DD/ instead of root dir; wrap quant() and evaluate() in daily_log.session() for start/stop/duration tracking - rdagent/app/cli.py: fin_quant_cli waits for llama.cpp /health endpoint before starting pipeline (up to 300 s); daily_log integration for fin_quant, generate_strategies, eval_all, parallel commands - scripts/predix_gen_strategies_real_bt.py: daily_log integration with per-strategy ACCEPTED/REJECTED entries and summary on completion - rdagent/components/coder/factor_coder/auto_fixer.py: new module that patches common LLM-generated factor issues (min_periods, inf/NaN, groupby.transform, MultiIndex corrections) - rdagent/components/coder/factor_coder/prompts.yaml: add critical rules for EURUSD 1-min intraday factors (min_periods, inf handling, groupby, date range) - README.md: document --reasoning off and --n-gpu-layers 28 for llama-server; explain VRAM constraints when Ollama is running alongside llama.cpp - .bandit.yml: suppress B615 (HuggingFace unsafe download) for RL benchmark files Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
423 lines
18 KiB
Python
423 lines
18 KiB
Python
"""
|
|
Predix Factor Auto-Fixer - Automatically patches common factor code issues.
|
|
|
|
This module intercepts LLM-generated factor code and automatically fixes known problems:
|
|
1. min_periods mismatch in rolling window calculations
|
|
2. Missing inf/NaN handling for division by zero
|
|
3. groupby().apply() instead of groupby().transform()
|
|
4. Incomplete data range processing
|
|
5. Missing groupby for MultiIndex dataframes
|
|
|
|
Usage:
|
|
auto_fixer = FactorAutoFixer()
|
|
fixed_code = auto_fixer.fix(original_code, factor_task_info)
|
|
"""
|
|
|
|
import ast
|
|
import logging
|
|
import re
|
|
from typing import Optional
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class FactorAutoFixer:
|
|
"""
|
|
Automatically patches common factor code issues before execution.
|
|
|
|
This runs AFTER LLM code generation but BEFORE execution, ensuring
|
|
known patterns are fixed without requiring another LLM iteration.
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.fixes_applied = []
|
|
|
|
def fix(self, code: str, factor_task_info: Optional[str] = None) -> str:
|
|
"""
|
|
Apply all auto-fixes to generated factor code.
|
|
|
|
Parameters
|
|
----------
|
|
code : str
|
|
LLM-generated factor code
|
|
factor_task_info : str, optional
|
|
Factor task information for context-aware fixes
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Patched factor code
|
|
"""
|
|
self.fixes_applied = []
|
|
fixed_code = code
|
|
|
|
# Apply fixes in order - groupby fixes MUST come before min_periods fixes
|
|
fix_methods = [
|
|
self._fix_groupby_apply_to_transform, # First: fix groupby patterns
|
|
self._fix_min_periods, # Second: fix min_periods in resulting rolling calls
|
|
self._fix_inf_nan_handling, # Third: add inf/nan handling
|
|
self._fix_data_range_processing, # Fourth: ensure full data range
|
|
self._fix_multiindex_groupby, # Fifth: ensure groupby on MultiIndex
|
|
]
|
|
|
|
for fix_method in fix_methods:
|
|
try:
|
|
fixed_code = fix_method(fixed_code)
|
|
except Exception as e:
|
|
logger.debug(f"Auto-fixer {fix_method.__name__} failed: {e}")
|
|
continue
|
|
|
|
if self.fixes_applied:
|
|
logger.info(
|
|
f"[AutoFix] Applied {len(self.fixes_applied)} fix(es) for {factor_task_info or 'unknown'}: "
|
|
f"{', '.join(self.fixes_applied)}"
|
|
)
|
|
|
|
return fixed_code
|
|
|
|
def _fix_min_periods(self, code: str) -> str:
|
|
"""
|
|
Fix: Ensure min_periods matches window size in rolling calculations.
|
|
|
|
Problem: LLM often sets min_periods=1 or min_periods=2 for rolling windows,
|
|
which creates inconsistent feature definitions.
|
|
|
|
Fix: Set min_periods equal to window size.
|
|
"""
|
|
fixed_code = code
|
|
|
|
# Pattern 1: .rolling(window=N, min_periods=M) where M < N
|
|
# Replace with min_periods=N
|
|
pattern1 = r'\.rolling\(window=(\d+),\s*min_periods=(\d+)\)'
|
|
|
|
def replace_min_periods1(match):
|
|
window_size = int(match.group(1))
|
|
min_periods = int(match.group(2))
|
|
if min_periods < window_size:
|
|
self.fixes_applied.append(f"min_periods: {min_periods}→{window_size}")
|
|
return f'.rolling(window={window_size}, min_periods={window_size})'
|
|
return match.group(0)
|
|
|
|
fixed_code = re.sub(pattern1, replace_min_periods1, fixed_code)
|
|
|
|
# Pattern 2: .rolling(N).mean() or .rolling(N).std() without min_periods
|
|
# Add min_periods=N
|
|
pattern2 = r'\.rolling\((\d+)\)\.(mean|std|var|sum|count|median|skew|kurt|quantile|min|max)\(\)'
|
|
|
|
def replace_min_periods2(match):
|
|
window_size = int(match.group(1))
|
|
method = match.group(2)
|
|
self.fixes_applied.append(f"min_periods: added {window_size} for {method}")
|
|
return f'.rolling({window_size}, min_periods={window_size}).{method}()'
|
|
|
|
fixed_code = re.sub(pattern2, replace_min_periods2, fixed_code)
|
|
|
|
# Pattern 3: .rolling(window=N).method() without min_periods
|
|
pattern3 = r'\.rolling\(window=(\d+)\)\.(mean|std|var|sum|count|median|skew|kurt|quantile|min|max)\(\)'
|
|
|
|
def replace_min_periods3(match):
|
|
window_size = int(match.group(1))
|
|
method = match.group(2)
|
|
self.fixes_applied.append(f"min_periods: added {window_size} for {method}")
|
|
return f'.rolling(window={window_size}, min_periods={window_size}).{method}()'
|
|
|
|
fixed_code = re.sub(pattern3, replace_min_periods3, fixed_code)
|
|
|
|
return fixed_code
|
|
|
|
def _fix_inf_nan_handling(self, code: str) -> str:
|
|
"""
|
|
Fix: Add inf/NaN handling after division operations.
|
|
|
|
Problem: Z-score and ratio calculations can produce inf values when
|
|
denominator (std, volatility) is zero.
|
|
|
|
Fix: Add .replace([np.inf, -np.inf], np.nan) after result calculation.
|
|
"""
|
|
fixed_code = code
|
|
|
|
# Check if inf handling already exists
|
|
if 'replace([np.inf, -np.inf]' in fixed_code or 'replace([np.inf,-np.inf]' in fixed_code:
|
|
if 'np.nan' in fixed_code or 'np.NaN' in fixed_code:
|
|
return fixed_code # Already handled
|
|
|
|
# Pattern 1: Division operation that could produce inf
|
|
# Look for patterns like: df['zscore'] = ... / df['sigma_20bar']
|
|
# or: df['ratio'] = df['sigma_5bar'] / df['sigma_60bar']
|
|
|
|
# Find the result column assignment (last major assignment before save)
|
|
# Pattern: result = df[['column_name']] or df['column_name'] = ...
|
|
|
|
# Add inf handling before the save operation
|
|
save_pattern = r'(\s*result\s*=\s*df\[\[.*?\]\])'
|
|
match = re.search(save_pattern, fixed_code, re.DOTALL)
|
|
|
|
if match:
|
|
insert_pos = match.start()
|
|
# Extract column name from the result assignment
|
|
col_match = re.search(r"result\s*=\s*df\[\[(.*?)\]\]", match.group(0))
|
|
if col_match:
|
|
col_name = col_match.group(1).strip().strip("'\"")
|
|
inf_fix = f"\n # Auto-fix: Handle infinite values\n df['{col_name}'] = df['{col_name}'].replace([np.inf, -np.inf], np.nan)\n"
|
|
fixed_code = fixed_code[:insert_pos] + inf_fix + fixed_code[insert_pos:]
|
|
self.fixes_applied.append("inf/nan: added replace for inf values")
|
|
return fixed_code
|
|
|
|
# Pattern 2: Direct assignment to result variable
|
|
# Add inf handling before dropna or save
|
|
dropna_pattern = r'(\s*\.dropna\(\))'
|
|
match = re.search(dropna_pattern, fixed_code)
|
|
|
|
if match:
|
|
insert_pos = match.start()
|
|
# Find the column being processed
|
|
# Look backwards for the last assignment
|
|
lines_before = fixed_code[:insert_pos].split('\n')
|
|
for line in reversed(lines_before):
|
|
col_match = re.search(r"df\['(.+?)'\]\s*=", line.strip())
|
|
if col_match:
|
|
col_name = col_match.group(1)
|
|
inf_fix = f" # Auto-fix: Handle infinite values\n df['{col_name}'] = df['{col_name}'].replace([np.inf, -np.inf], np.nan)\n"
|
|
fixed_code = fixed_code[:insert_pos] + inf_fix + fixed_code[insert_pos:]
|
|
self.fixes_applied.append("inf/nan: added replace for inf values")
|
|
return fixed_code
|
|
|
|
# Pattern 3: Generic fallback - add inf handling before any .to_hdf call
|
|
hdf_pattern = r'(\s*\.to_hdf\()'
|
|
match = re.search(hdf_pattern, fixed_code)
|
|
|
|
if match:
|
|
insert_pos = match.start()
|
|
inf_fix = " # Auto-fix: Handle infinite values\n result = result.replace([np.inf, -np.inf], np.nan)\n"
|
|
fixed_code = fixed_code[:insert_pos] + inf_fix + fixed_code[insert_pos:]
|
|
self.fixes_applied.append("inf/nan: added replace for inf values on result")
|
|
|
|
return fixed_code
|
|
|
|
def _fix_groupby_apply_to_transform(self, code: str) -> str:
|
|
"""
|
|
Fix: Convert groupby().apply() to groupby().transform() where appropriate.
|
|
|
|
Problem: groupby().apply() returns a DataFrame structure that cannot be
|
|
assigned to a single column, causing ValueError.
|
|
|
|
Fix: Use groupby().transform() which preserves original DataFrame structure.
|
|
"""
|
|
fixed_code = code
|
|
|
|
# === CRITICAL FIX: groupby().rolling() on MultiIndex creates extra index level ===
|
|
# Pattern: df.groupby(level=N)['col'].rolling(window=W, min_periods=M).method()
|
|
# When assigned back to df['new_col'], it causes:
|
|
# AssertionError: Length of new_levels (3) must be <= self.nlevels (2)
|
|
# Fix: Add .reset_index(level=-1, drop=True) after rolling operation
|
|
|
|
# Pattern: df.groupby(level=N)['col_A'].rolling(window=W, min_periods=M).corr(x['col_B'])
|
|
rolling_corr_pattern = (
|
|
r"df\.groupby\(level=(\d+)\)\['([^']+)'\]\.rolling\(\s*window=(\d+)\s*,\s*min_periods=(\d+)\s*\)"
|
|
r"\.corr\(x\['([^']+)'\]\)"
|
|
)
|
|
match = re.search(rolling_corr_pattern, fixed_code)
|
|
if match:
|
|
level = match.group(1)
|
|
col_a = match.group(2)
|
|
window = match.group(3)
|
|
min_periods = match.group(4)
|
|
col_b = match.group(5)
|
|
|
|
old_code = match.group(0)
|
|
new_code = (
|
|
f"df.groupby(level={level}).apply(\n"
|
|
f" lambda x: x['{col_a}'].rolling(window={window}, min_periods={min_periods}).corr(x['{col_b}'])\n"
|
|
f" ).reset_index(level={level}, drop=True)"
|
|
)
|
|
fixed_code = fixed_code.replace(old_code, new_code)
|
|
self.fixes_applied.append(f"groupby: fixed rolling correlation with reset_index (window={window})")
|
|
# Continue to check for more patterns below
|
|
|
|
# Pattern: df.groupby(level=N)['col'].rolling(window=W, min_periods=M).method()
|
|
# This is the MOST COMMON pattern that causes failures
|
|
# Matches multi-line expressions too
|
|
groupby_rolling_pattern = (
|
|
r"df\.groupby\(level=(\d+)\)\['([^']+)'\]\.rolling\(\s*([^)]+)\s*\)\.(\w+)\(\)"
|
|
)
|
|
|
|
for match in re.finditer(groupby_rolling_pattern, fixed_code, re.DOTALL):
|
|
full_expr = match.group(0)
|
|
level = match.group(1)
|
|
col_name = match.group(2)
|
|
rolling_args = match.group(3).strip()
|
|
# Normalize rolling_args to single line
|
|
rolling_args = ' '.join(rolling_args.split())
|
|
method = match.group(4)
|
|
|
|
# Check if this expression is being assigned to df[...]
|
|
# Since full_expr may contain newlines, use a flexible pattern
|
|
# Look for: df['xxx'] = df.groupby(level=N)['col'].rolling(...)
|
|
# We need to match even with whitespace/newlines between tokens
|
|
escaped_parts = []
|
|
for token in ["df", r"\.groupby\(level=" + level + r"\)\['" + re.escape(col_name) + r"'\]", r"\.rolling\("]:
|
|
escaped_parts.append(re.escape(token) if not token.startswith(r"\\") else token)
|
|
|
|
# Simpler approach: search for assignment before the match position
|
|
match_start = match.start()
|
|
preceding_text = fixed_code[max(0, match_start-50):match_start]
|
|
assign_match = re.search(r"df\['[^']+'\]\s*=\s*$", preceding_text)
|
|
|
|
if assign_match:
|
|
# Direct assignment - use transform pattern
|
|
new_expr = f"df.groupby(level={level})['{col_name}'].transform(lambda x: x.rolling({rolling_args}).{method}())"
|
|
fixed_code = fixed_code[:match.start()] + new_expr + fixed_code[match.end():]
|
|
self.fixes_applied.append(f"groupby: converted rolling {method} to transform pattern")
|
|
else:
|
|
# Not direct assignment but still needs fix
|
|
new_expr = f"df.groupby(level={level})['{col_name}'].rolling({rolling_args}).{method}().reset_index(level=-1, drop=True)"
|
|
fixed_code = fixed_code[:match.start()] + new_expr + fixed_code[match.end():]
|
|
self.fixes_applied.append(f"groupby: added reset_index for rolling {method}")
|
|
|
|
# === GENERAL FIX: ANY series.groupby(level=N).rolling() pattern ===
|
|
# Catches patterns like: sigma_60 = returns.groupby(level=1).rolling(...).std()
|
|
# or: mu_30 = volume_price_product.groupby(level=1).rolling(...).mean()
|
|
# These create MultiIndex issues when used in arithmetic with original series
|
|
general_groupby_rolling = (
|
|
r"(\w+)\.groupby\(level=(\d+)\)\.rolling\(\s*([^)]+)\s*\)\.(\w+)\(\)"
|
|
)
|
|
|
|
for match in re.finditer(general_groupby_rolling, fixed_code, re.DOTALL):
|
|
full_expr = match.group(0)
|
|
series_name = match.group(1)
|
|
level = match.group(2)
|
|
rolling_args = match.group(3).strip()
|
|
rolling_args = ' '.join(rolling_args.split())
|
|
method = match.group(4)
|
|
|
|
# Check if this already has reset_index
|
|
if 'reset_index' not in full_expr and 'transform' not in full_expr:
|
|
# Check if this is assigned to a variable
|
|
assign_pattern = rf"(\w+)\s*=\s*{re.escape(full_expr)}"
|
|
if re.search(assign_pattern, fixed_code):
|
|
new_expr = f"{series_name}.groupby(level={level}).rolling({rolling_args}).{method}().reset_index(level=-1, drop=True)"
|
|
fixed_code = fixed_code.replace(full_expr, new_expr)
|
|
self.fixes_applied.append(f"groupby: added reset_index for {series_name}.rolling().{method}()")
|
|
|
|
# Pattern: Rolling correlation with groupby().apply() - CRITICAL FIX
|
|
# df.groupby(level=N).apply(lambda x: x['A'].rolling(window=W).corr(x['B']))
|
|
corr_pattern = r"df\.groupby\(level=(\d+)\)\.apply\(\s*lambda\s+x:\s+x\['([^']+)'\]\.rolling\(window=(\d+)[^)]*\)\.corr\(x\['([^']+)'\]\)\)"
|
|
|
|
match = re.search(corr_pattern, fixed_code)
|
|
if match:
|
|
level = match.group(1)
|
|
col_a = match.group(2)
|
|
window = match.group(3)
|
|
|
|
# Find the actual second column name
|
|
full_match = match.group(0)
|
|
col_b_match = re.search(r"corr\(x\['([^']+)'\]\)", full_match)
|
|
if col_b_match:
|
|
col_b = col_b_match.group(1)
|
|
|
|
# Replace with proper rolling correlation per group
|
|
old_code = match.group(0)
|
|
new_code = (
|
|
f"df.groupby(level={level}).apply(\n"
|
|
f" lambda x: x['{col_a}'].rolling(window={window}, min_periods={window}).corr(x['{col_b}'])\n"
|
|
f" ).reset_index(level={level}, drop=True)"
|
|
)
|
|
fixed_code = fixed_code.replace(old_code, new_code)
|
|
self.fixes_applied.append(f"groupby: fixed rolling correlation (window={window}) with reset_index")
|
|
|
|
# Pattern: Simple groupby().apply() with rolling().method()
|
|
# df.groupby(level=N).apply(lambda x: x['col'].rolling(...).method())
|
|
apply_pattern = r"df\.groupby\(level=(\d+)\)\.apply\(\s*lambda\s+x:\s+x\['([^']+)'\]\.rolling\([^)]+\)\.(\w+)\([^)]*\)\s*\)"
|
|
|
|
match = re.search(apply_pattern, fixed_code)
|
|
if match:
|
|
level = match.group(1)
|
|
col_name = match.group(2)
|
|
method = match.group(3)
|
|
|
|
# Replace with transform pattern
|
|
old_code = match.group(0)
|
|
# Extract window size from the rolling call
|
|
window_match = re.search(r"rolling\(window=(\d+)", old_code)
|
|
window = window_match.group(1) if window_match else "20"
|
|
|
|
new_code = f"df.groupby(level={level})['{col_name}'].transform(lambda x: x.rolling(window={window}, min_periods={window}).{method}())"
|
|
fixed_code = fixed_code.replace(old_code, new_code)
|
|
self.fixes_applied.append(f"groupby: converted apply() to transform() for {method}")
|
|
|
|
return fixed_code
|
|
|
|
def _fix_data_range_processing(self, code: str) -> str:
|
|
"""
|
|
Fix: Ensure full data range (2020-2026) is processed, not just a subset.
|
|
|
|
Problem: Some factors only process a subset of data (e.g., 2024-2024).
|
|
|
|
Fix: Remove any date filtering and ensure full range processing.
|
|
"""
|
|
fixed_code = code
|
|
|
|
# Remove date filtering patterns
|
|
date_filter_patterns = [
|
|
r"df\s*=\s*df\.loc\[[^:]*20\d\d[^]]*\]",
|
|
r"df\s*=\s*df\[df\.index\.get_level_values\('datetime'\)\s*>=\s*['\"]20\d\d",
|
|
r"df\s*=\s*df\[(df\.)?index\.get_level_values\(0\)\s*>=\s*",
|
|
]
|
|
|
|
for pattern in date_filter_patterns:
|
|
match = re.search(pattern, fixed_code)
|
|
if match:
|
|
# Comment out the date filter instead of removing
|
|
self.fixes_applied.append("data_range: removed date filter")
|
|
fixed_code = fixed_code.replace(match.group(0), f"# Date filter removed to process full range: {match.group(0)}")
|
|
|
|
return fixed_code
|
|
|
|
def _fix_multiindex_groupby(self, code: str) -> str:
|
|
"""
|
|
Fix: Ensure rolling operations use groupby(level=1) for MultiIndex dataframes.
|
|
|
|
Problem: Without groupby, rolling calculations mix instruments together.
|
|
|
|
Fix: Add groupby(level=1) before rolling operations if not already present.
|
|
"""
|
|
fixed_code = code
|
|
|
|
# Check if code already has groupby
|
|
if 'groupby(level=' in fixed_code or 'groupby("instrument")' in fixed_code:
|
|
return fixed_code
|
|
|
|
# Check if code uses MultiIndex (has 'instrument' in index)
|
|
if 'level=1' not in fixed_code and 'level=' not in fixed_code:
|
|
# Check if there are rolling operations that should be grouped
|
|
rolling_pattern = r"\.rolling\(\d+\)"
|
|
if re.search(rolling_pattern, fixed_code):
|
|
# The code might need groupby, but we can't safely add it without
|
|
# understanding the full context. Log a warning instead.
|
|
logger.warning(
|
|
f"[AutoFix] Code uses rolling without groupby - may need manual review"
|
|
)
|
|
|
|
return fixed_code
|
|
|
|
|
|
# Module-level convenience function
|
|
def auto_fix_factor_code(code: str, factor_task_info: Optional[str] = None) -> str:
|
|
"""
|
|
Apply all auto-fixes to factor code.
|
|
|
|
Parameters
|
|
----------
|
|
code : str
|
|
LLM-generated factor code
|
|
factor_task_info : str, optional
|
|
Factor task information
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Patched factor code
|
|
"""
|
|
fixer = FactorAutoFixer()
|
|
return fixer.fix(code, factor_task_info)
|