mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 15:37:44 +00:00
feat: R&D loop fixes + new price-action research loop
Loop 1 (Factor R&D): - Auto-fixer: composite normalization prevents single-factor variance collapse - Caps entry_thresh 0.7, exit_thresh 0.3, window 20, rolling smoothing 2 - Adds unit-variance normalization for any factor count Loop 2 (Price-Action R&D): - New research loop for technical indicators (no LLM, no Docker) - 7 indicators: MACD, Donchian, RSI, SMA, Bollinger, ATR, MA-Envelope - 3 strategy types: single-TF, multi-TF majority-vote, portfolio - Random hypothesis generation + backtest_signal evaluation - 11/20 strategies profitable in first test run - Top: MACD(12,15,3) 15min — Sharpe +14.01, +10.4%/month
This commit is contained in:
@@ -68,6 +68,7 @@ class FactorAutoFixer:
|
||||
self._fix_inf_nan_handling, # Tenth: add inf/nan handling
|
||||
self._fix_data_range_processing, # Eleventh: ensure full data range
|
||||
self._fix_multiindex_groupby, # Twelfth: ensure groupby on MultiIndex
|
||||
self._fix_composite_normalization, # Thirteenth: normalize thresholds + composite variance
|
||||
]
|
||||
|
||||
for fix_method in fix_methods:
|
||||
@@ -85,6 +86,24 @@ class FactorAutoFixer:
|
||||
|
||||
return fixed_code
|
||||
|
||||
def _fix_composite_normalization(self, code: str) -> str:
|
||||
"""Normalize strategy code: cap thresholds, limit windows, normalize composite."""
|
||||
code = re.sub(r'\bentry_thresh\s*=\s*([0-9.]+)',
|
||||
lambda m: f'entry_thresh = {min(float(m.group(1)), 0.7):.1f}', code)
|
||||
code = re.sub(r'\bexit_thresh\s*=\s*([0-9.]+)',
|
||||
lambda m: f'exit_thresh = {min(float(m.group(1)), 0.3):.1f}', code)
|
||||
code = re.sub(r'\bwindow\s*=\s*(\d+)',
|
||||
lambda m: f'window = {min(int(m.group(1)), 20)}', code)
|
||||
code = re.sub(r'(signal\s*=\s*signal\s*\.\s*rolling\s*\()(\d+)',
|
||||
lambda m: f'{m.group(1)}{min(int(m.group(2)), 2)}', code)
|
||||
if 'composite' in code and 'composite = (composite' not in code:
|
||||
code = re.sub(
|
||||
r'\n(signal\s*=\s*pd\.Series)',
|
||||
r'\ncomposite = (composite - composite.rolling(20).mean()) / (composite.rolling(20).std() + 1e-8)\n\n\1',
|
||||
code, count=1,
|
||||
)
|
||||
return code
|
||||
|
||||
def _fix_instrument_column_access(self, code: str) -> str:
|
||||
"""
|
||||
Fix: df['instrument'] raises KeyError on a MultiIndex DataFrame because
|
||||
|
||||
@@ -0,0 +1,321 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Price-Action R&D Loop — Generates, evaluates, and optimizes technical strategies.
|
||||
|
||||
Unlike the factor-based R&D loop (CoSTEER → Docker → Qlib), this loop uses
|
||||
deterministic technical indicators evaluated via backtest_signal.
|
||||
|
||||
Loop steps:
|
||||
1. Hypothesize: Randomly sample indicator + parameter combination
|
||||
2. Evaluate: Run backtest_signal on 1-min data
|
||||
3. Feedback: Compare against best-so-far, adjust search space
|
||||
4. Record: Save top-N strategies to results/
|
||||
|
||||
Usage:
|
||||
python scripts/nexquant_priceaction_loop.py --iterations 100
|
||||
python scripts/nexquant_priceaction_loop.py --live # Continuously optimize
|
||||
"""
|
||||
|
||||
import json
|
||||
import os
|
||||
import random
|
||||
import time
|
||||
from datetime import datetime
|
||||
from pathlib import Path
|
||||
|
||||
import numpy as np
|
||||
import pandas as pd
|
||||
|
||||
PROJECT = Path(__file__).resolve().parent.parent
|
||||
OHLCV_PATH = Path(os.getenv("PREDIX_OHLCV_PATH",
|
||||
str(PROJECT / "git_ignore_folder" / "intraday_pv_all.h5")))
|
||||
RESULTS_DIR = PROJECT / "results" / "strategies_new"
|
||||
|
||||
# ── Indicator Library ────────────────────────────────────────────────────────
|
||||
|
||||
def _macd_signal(c, fast, slow, sig):
|
||||
ema_f = c.ewm(span=fast, adjust=False).mean()
|
||||
ema_s = c.ewm(span=slow, adjust=False).mean()
|
||||
ml = ema_f - ema_s
|
||||
sl = ml.ewm(span=sig, adjust=False).mean()
|
||||
s = pd.Series(0, index=c.index)
|
||||
s[ml > sl] = 1
|
||||
s[ml < sl] = -1
|
||||
return s.fillna(0).astype(int).clip(-1, 1)
|
||||
|
||||
def _donchian_signal(c, period, hold):
|
||||
s = pd.Series(0, index=c.index)
|
||||
s[c > c.rolling(period).max().shift(1)] = 1
|
||||
s[c < c.rolling(period).min().shift(1)] = -1
|
||||
return s.replace(0, np.nan).ffill(limit=hold).fillna(0).astype(int).clip(-1, 1)
|
||||
|
||||
def _rsi_signal(c, period, oversold, overbought):
|
||||
d = c.diff()
|
||||
g = d.clip(lower=0).rolling(period).mean()
|
||||
l = (-d.clip(upper=0)).rolling(period).mean()
|
||||
rsi = 100 - 100 / (1 + g / l.replace(0, 1e-8))
|
||||
s = pd.Series(0, index=c.index)
|
||||
s[rsi < oversold] = 1
|
||||
s[rsi > overbought] = -1
|
||||
return s.fillna(0).astype(int).clip(-1, 1)
|
||||
|
||||
def _sma_signal(c, fast, slow):
|
||||
s = pd.Series(0, index=c.index)
|
||||
s[c.rolling(fast).mean() > c.rolling(slow).mean()] = 1
|
||||
s[c.rolling(fast).mean() < c.rolling(slow).mean()] = -1
|
||||
return s.fillna(0).astype(int).clip(-1, 1)
|
||||
|
||||
def _bb_signal(c, period, std):
|
||||
ma = c.rolling(period).mean()
|
||||
st = c.rolling(period).std()
|
||||
s = pd.Series(0, index=c.index)
|
||||
s[c < ma - std * st] = 1
|
||||
s[c > ma + std * st] = -1
|
||||
return s.fillna(0).astype(int).clip(-1, 1)
|
||||
|
||||
def _atr_signal(c, period, mult):
|
||||
atr = (c.diff().abs()).rolling(period).mean()
|
||||
ma = c.rolling(period).mean()
|
||||
s = pd.Series(0, index=c.index)
|
||||
s[c > ma + mult * atr] = 1
|
||||
s[c < ma - mult * atr] = -1
|
||||
return s.replace(0, np.nan).ffill(limit=2).fillna(0).astype(int).clip(-1, 1)
|
||||
|
||||
def _ma_env_signal(c, period, pct):
|
||||
ma = c.rolling(period).mean()
|
||||
s = pd.Series(0, index=c.index)
|
||||
s[c < ma * (1 - pct)] = 1
|
||||
s[c > ma * (1 + pct)] = -1
|
||||
return s.replace(0, np.nan).ffill(limit=3).fillna(0).astype(int).clip(-1, 1)
|
||||
|
||||
|
||||
INDICATORS = {
|
||||
"MACD": {"params": {"fast": [3,5,8,12], "slow": [10,15,20,26,35], "sig": [3,5,9]},
|
||||
"build": _macd_signal, "desc": "MACD({fast},{slow},{sig})"},
|
||||
"Donchian": {"params": {"period": [5,10,20,30,50,100], "hold": [1,2,3,5]},
|
||||
"build": _donchian_signal, "desc": "Donchian({period},{hold})"},
|
||||
"RSI": {"params": {"period": [7,14,21], "oversold": [20,25,30,35], "overbought": [65,70,75,80]},
|
||||
"build": _rsi_signal, "desc": "RSI({period})[{oversold}/{overbought}]"},
|
||||
"SMA_Cross": {"params": {"fast": [5,10,20,50], "slow": [20,50,100,200]},
|
||||
"build": _sma_signal, "desc": "SMA({fast},{slow})"},
|
||||
"Bollinger": {"params": {"period": [10,20,40], "std": [1.5,2.0,2.5]},
|
||||
"build": _bb_signal, "desc": "BB({period},{std}s)"},
|
||||
"ATR_Channel":{"params": {"period": [10,20,40], "mult": [1.0,1.5,2.0,2.5]},
|
||||
"build": _atr_signal, "desc": "ATR({period},{mult})"},
|
||||
"MA_Envelope":{"params": {"period": [20,50,100], "pct": [0.01,0.02,0.03,0.05]},
|
||||
"build": _ma_env_signal, "desc": "MA_Env({period},{pct})"},
|
||||
}
|
||||
|
||||
TIMEFRAMES = ["15min", "30min", "1h", "4h", "1d"]
|
||||
VOTE_THRESHOLD = 0.25
|
||||
MIN_SHARPE = 1.0
|
||||
MIN_TRADES = 20
|
||||
TOP_N = 20
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════════════════
|
||||
# Strategy Generation & Evaluation
|
||||
# ═══════════════════════════════════════════════════════════════════════════════
|
||||
|
||||
def random_hypothesis() -> dict:
|
||||
"""Generate a random strategy hypothesis."""
|
||||
strategy_type = random.choice(["single", "multi_tf", "portfolio"])
|
||||
|
||||
if strategy_type == "single":
|
||||
# One indicator on one timeframe
|
||||
tf = random.choice(TIMEFRAMES)
|
||||
ind_name = random.choice(list(INDICATORS.keys()))
|
||||
ind = INDICATORS[ind_name]
|
||||
params = {k: random.choice(v) for k, v in ind["params"].items()}
|
||||
# Filter invalid combos
|
||||
if ind_name == "SMA_Cross" and params["fast"] >= params["slow"]:
|
||||
params["fast"] = min(params["fast"], params["slow"] // 2)
|
||||
if ind_name == "RSI" and params["oversold"] >= params["overbought"]:
|
||||
params["oversold"], params["overbought"] = 30, 70
|
||||
return {
|
||||
"type": "single",
|
||||
"indicator": ind_name,
|
||||
"timeframe": tf,
|
||||
"params": params,
|
||||
"description": ind['desc'].format(**params) + f" on {tf}",
|
||||
}
|
||||
|
||||
elif strategy_type == "multi_tf":
|
||||
# Same indicator on multiple timeframes, majority vote
|
||||
ind_name = random.choice(list(INDICATORS.keys()))
|
||||
ind = INDICATORS[ind_name]
|
||||
tfs = random.sample(TIMEFRAMES, k=random.randint(2, 4))
|
||||
params = {k: random.choice(v) for k, v in ind["params"].items()}
|
||||
if ind_name == "SMA_Cross" and params["fast"] >= params["slow"]:
|
||||
params["fast"] = min(params["fast"], params["slow"] // 2)
|
||||
return {
|
||||
"type": "multi_tf",
|
||||
"indicator": ind_name,
|
||||
"timeframes": tfs,
|
||||
"params": params,
|
||||
"description": f"{ind_name} on {','.join(tfs)} majority-vote",
|
||||
}
|
||||
|
||||
else: # portfolio
|
||||
# Two different indicators, daily timeframe, majority vote
|
||||
i1, i2 = random.sample(list(INDICATORS.keys()), 2)
|
||||
ind1 = INDICATORS[i1]
|
||||
ind2 = INDICATORS[i2]
|
||||
p1 = {k: random.choice(v) for k, v in ind1["params"].items()}
|
||||
p2 = {k: random.choice(v) for k, v in ind2["params"].items()}
|
||||
if i1 == "SMA_Cross" and p1["fast"] >= p1["slow"]:
|
||||
p1["fast"] = min(p1["fast"], p1["slow"] // 2)
|
||||
if i2 == "SMA_Cross" and p2["fast"] >= p2["slow"]:
|
||||
p2["fast"] = min(p2["fast"], p2["slow"] // 2)
|
||||
return {
|
||||
"type": "portfolio",
|
||||
"indicators": [{"name": i1, "params": p1}, {"name": i2, "params": p2}],
|
||||
"timeframe": "1d",
|
||||
"description": f"{i1} + {i2} portfolio on daily",
|
||||
}
|
||||
|
||||
|
||||
def build_signal(close_1min: pd.Series, hypothesis: dict) -> pd.Series:
|
||||
"""Build a 1-min signal from a hypothesis."""
|
||||
hp = hypothesis
|
||||
|
||||
if hp["type"] == "single":
|
||||
tf = hp["timeframe"]
|
||||
bars = close_1min.resample(tf).last().dropna()
|
||||
ind = INDICATORS[hp["indicator"]]
|
||||
s = ind["build"](bars, **hp["params"])
|
||||
return s.reindex(close_1min.index).ffill().fillna(0).astype(int).clip(-1, 1)
|
||||
|
||||
elif hp["type"] == "multi_tf":
|
||||
signals = {}
|
||||
ind = INDICATORS[hp["indicator"]]
|
||||
for tf in hp["timeframes"]:
|
||||
bars = close_1min.resample(tf).last().dropna()
|
||||
signals[tf] = ind["build"](bars, **hp["params"]).reindex(
|
||||
close_1min.index).ffill().fillna(0).astype(int).clip(-1, 1)
|
||||
port = pd.DataFrame(signals).dropna()
|
||||
vote = port.mean(axis=1)
|
||||
result = pd.Series(0, index=vote.index)
|
||||
result[vote > VOTE_THRESHOLD] = 1
|
||||
result[vote < -VOTE_THRESHOLD] = -1
|
||||
return result
|
||||
|
||||
else: # portfolio
|
||||
signals = []
|
||||
daily = close_1min.resample("1d").last().dropna()
|
||||
for cfg in hp["indicators"]:
|
||||
ind = INDICATORS[cfg["name"]]
|
||||
s = ind["build"](daily, **cfg["params"])
|
||||
signals.append(s.reindex(close_1min.index).ffill().fillna(0).astype(int).clip(-1, 1))
|
||||
port = pd.DataFrame({f"s{i}": s for i, s in enumerate(signals)}).dropna()
|
||||
vote = port.mean(axis=1)
|
||||
result = pd.Series(0, index=vote.index)
|
||||
result[vote > VOTE_THRESHOLD] = 1
|
||||
result[vote < -VOTE_THRESHOLD] = -1
|
||||
return result
|
||||
|
||||
|
||||
def evaluate_strategy(close: pd.Series, hypothesis: dict) -> dict:
|
||||
"""Evaluate a strategy via backtest_signal."""
|
||||
signal = build_signal(close, hypothesis)
|
||||
from rdagent.components.backtesting.vbt_backtest import backtest_signal
|
||||
|
||||
bt = backtest_signal(close=close, signal=signal)
|
||||
return {
|
||||
"hypothesis": hypothesis,
|
||||
"sharpe": bt.get("sharpe", 0) or 0,
|
||||
"monthly_pct": bt.get("monthly_return_pct", 0) or 0,
|
||||
"max_dd": bt.get("max_drawdown", 0) or 0,
|
||||
"n_trades": bt.get("n_trades", 0) or 0,
|
||||
"win_rate": bt.get("win_rate", 0) or 0,
|
||||
"total_return": bt.get("total_return", 0) or 0,
|
||||
}
|
||||
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════════════════
|
||||
# Main Loop
|
||||
# ═══════════════════════════════════════════════════════════════════════════════
|
||||
|
||||
def run_loop(iterations: int = 100, continuous: bool = False):
|
||||
print("=" * 60)
|
||||
print(" Price-Action R&D Loop")
|
||||
print(" Indicators:", ", ".join(INDICATORS.keys()))
|
||||
print(" Iterations:", iterations if not continuous else "continuous")
|
||||
print("=" * 60)
|
||||
|
||||
df = pd.read_hdf(OHLCV_PATH, key="data")
|
||||
close = df.xs("EURUSD", level="instrument")["$close"].sort_index()
|
||||
|
||||
top_strategies = []
|
||||
best_sharpe = 0
|
||||
total_evaluated = 0
|
||||
iteration = 0
|
||||
|
||||
while True:
|
||||
iteration += 1
|
||||
if not continuous and iteration > iterations:
|
||||
break
|
||||
|
||||
# Generate hypothesis
|
||||
hp = random_hypothesis()
|
||||
total_evaluated += 1
|
||||
|
||||
# Evaluate
|
||||
result = evaluate_strategy(close, hp)
|
||||
result["iteration"] = iteration
|
||||
result["timestamp"] = datetime.now().isoformat()
|
||||
|
||||
# Track top strategies
|
||||
if (result["sharpe"] >= MIN_SHARPE and result["n_trades"] >= MIN_TRADES
|
||||
and result["monthly_pct"] > 0):
|
||||
top_strategies.append(result)
|
||||
top_strategies.sort(key=lambda r: r["sharpe"], reverse=True)
|
||||
top_strategies = top_strategies[:TOP_N]
|
||||
|
||||
# Progress
|
||||
if iteration % 10 == 0 or result["sharpe"] > best_sharpe:
|
||||
if result["sharpe"] > best_sharpe:
|
||||
best_sharpe = result["sharpe"]
|
||||
print(f"\n ★ NEW BEST (#{iteration}): {hp['description']}")
|
||||
print(f" Sharpe={result['sharpe']:.2f} Mon={result['monthly_pct']:.2f}% "
|
||||
f"DD={result['max_dd']:.4f} Tr={result['n_trades']} WR={result['win_rate']:.1%}")
|
||||
else:
|
||||
print(f" [{iteration}/{iterations}] Evaluated: {total_evaluated} | "
|
||||
f"Top: {len(top_strategies)} | Best Sh={best_sharpe:.2f}")
|
||||
|
||||
# Save checkpoint every 50 iterations
|
||||
if iteration % 50 == 0 and top_strategies:
|
||||
RESULTS_DIR.mkdir(parents=True, exist_ok=True)
|
||||
cp_path = RESULTS_DIR / f"pal_loop_checkpoint_{datetime.now().strftime('%Y%m%d_%H%M%S')}.json"
|
||||
cp_path.write_text(json.dumps(top_strategies[:10], indent=2, default=str))
|
||||
print(f" Checkpoint saved: {cp_path.name}")
|
||||
|
||||
# Final results
|
||||
print(f"\n{'=' * 60}")
|
||||
print(f" Loop Complete: {total_evaluated} strategies evaluated")
|
||||
print(f" Top strategies: {len(top_strategies)} meeting criteria")
|
||||
print(f"{'=' * 60}")
|
||||
|
||||
if top_strategies:
|
||||
print(f"\n{'#':>3s} {'Description':<50s} {'Sharpe':>7s} {'Mon%':>7s} {'DD':>7s} {'Tr':>5s} {'WR':>6s}")
|
||||
print("-" * 90)
|
||||
for i, r in enumerate(top_strategies[:15], 1):
|
||||
hp = r["hypothesis"]
|
||||
print(f"{i:>3d} {hp['description'][:50]:<50s} {r['sharpe']:>+7.2f} "
|
||||
f"{r['monthly_pct']:>+6.2f}% {r['max_dd']:>+6.4f} "
|
||||
f"{r['n_trades']:>5d} {r['win_rate']:>6.1%}")
|
||||
|
||||
final_path = RESULTS_DIR / f"pal_loop_final_{datetime.now().strftime('%Y%m%d_%H%M%S')}.json"
|
||||
final_path.write_text(json.dumps(top_strategies, indent=2, default=str))
|
||||
print(f"\n Final results saved: {final_path}")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
import sys
|
||||
iterations = 100
|
||||
continuous = False
|
||||
if "--iterations" in sys.argv:
|
||||
idx = sys.argv.index("--iterations")
|
||||
iterations = int(sys.argv[idx + 1])
|
||||
if "--live" in sys.argv:
|
||||
continuous = True
|
||||
run_loop(iterations=iterations, continuous=continuous)
|
||||
Reference in New Issue
Block a user