AI News AI资讯 6h ago Updated 2h ago 更新于 2小时前 46

Researchers from Princeton, Ant Group and Stanford Introduce AQuA: A Two-Part Agentic Framework for Autonomous Factor Discovery and Model Development in Quantitative Finance 普林斯顿、蚂蚁集团和斯坦福大学研究人员推出AQuA:一种用于量化金融中自主因子发现和模型开发的两部分智能体框架

AQuA introduces a two-part agentic research framework where an AI Manager orchestrates independent agent pipelines for symbolic alpha factor discovery (crypto) and time-series model development (US equities), with no shared state between parts The core innovation is "asymmetric freedom": agents explore freely within a constrained DSL while data splits, feature definitions, labels, and evaluators are sealed before any iteration begins, preventing data leakage and adaptive overfitting Part I achie AQuA 提出"非对称自由"架构,将评估器(数据分割、特征、标签、评估标准)与探索性 Agent 完全隔离,从根本上阻断数据泄露路径 系统由两个独立研究循环组成:Part I 在加密货币市场发现符号化 alpha 因子,Part II 在美国股票市场发展时序预测模型,两者共享零 Agent、零记忆、零状态 Part I 在 20 个研究周期后,加密货币五分钟宇宙的综合验证 Spearman IC 达到约 0.190,显著优于 AlphaMemo (0.171)、AlphaGen (0.151) 及传统模型 Part II 的混合模型(1D 卷积 + LSTM/Mamba/Attention +

62
Hot 热度
72
Quality 质量
65
Impact 影响力

Analysis 深度分析

TL;DR

  • AQuA introduces a two-part agentic research framework where an AI Manager orchestrates independent agent pipelines for symbolic alpha factor discovery (crypto) and time-series model development (US equities), with no shared state between parts
  • The core innovation is "asymmetric freedom": agents explore freely within a constrained DSL while data splits, feature definitions, labels, and evaluators are sealed before any iteration begins, preventing data leakage and adaptive overfitting
  • Part I achieves a combined validation Spearman IC of ~0.190 on a crypto five-minute universe across 20 research epochs, outperforming AlphaMemo (0.171), AlphaGen (0.151), LSTM (0.137), LightGBM (0.106), and Alpha158 (0.075)
  • Part II achieves a per-stock raw IC of +0.0843 on intraday US equities, surpassing the best baseline GRU (+0.0613) by 37.5% relative, with a sector-neutralized dollar-neutral long/short book reaching a +2.50 Sharpe ratio at 2 bps two-leg cost
  • The equity strategy maintains positive Sharpe ratios every year from 2021–2025 (+1.7 to +3.5), including the 2022 drawdown period, with a fully causal walk-forward parameter selection still achieving +2.00 Sharpe

Why It Matters

This work directly addresses a critical failure mode in autonomous AI research systems: the self-corruption of evidence through data leakage and adaptive overfitting, which has been a persistent problem in quantitative finance since Bailey et al. By architecturally enforcing an integrity boundary between the adaptive research agent and the frozen evaluator, AQuA provides a practical blueprint for building trustworthy autonomous research agents that can iteratively improve without undermining their own validation.

Technical Details

  • Asymmetric Freedom Architecture: Each research part fixes its train/validation/test splits, feature and label definitions, and evaluator before any iteration begins. Agents emit only constrained outputs—a symbolic factor expression from a formulaic-alpha operator registry in Part I, or a single config diff (architecture/loss/sampler/optimizer) in Part II—making leakage-inducing actions structurally unavailable
  • Part I (Manager-Mediated Factor Discovery): A six-agent pipeline (Data Steward, Visual Analyst, Idea Miner, Factor Evaluator, Backtest Engineer, Research Librarian) orchestrated by an AI Manager with no direct inter-agent calls. Factors enter as falsifiable hypotheses (mechanism, predicted direction, refutation conditions) rather than raw expressions. Causality is closed under composition because time-series operators read only trailing windows and cross-sectional operators read only the current timestamp. Three feedback loops operate: direction calibration, falsification-driven belief update, and cross-run memory steering
  • Part II (Config-Driven Model Development): A hybrid predictor combining a multi-scale 1-D convolutional front-end, configurable backbone (LSTM/Mamba/attention), cross-sectional mixing stage, gated fusion, and pooled per-stock readout. Each hypothesis is exactly one config diff producing one variant. Training on 2010–2019 with 2020 as an untouched embargo gap and 2021–2025 as held-out test data; selection uses only an inner-validation slice from the end of the training window
  • Two independent research loops: The crypto and equity systems share no agents, memories, candidate spaces, or research state, ensuring that success in one domain cannot contaminate the other

Industry Insight

  • The "asymmetric freedom" design principle should be adopted as a standard for any autonomous research agent system operating in domains where data leakage can silently invalidate results—particularly in finance, drug discovery, and A/B testing—where the cost of undetected overfitting is severe
  • The results demonstrate that architectural constraints (sealed evaluators, DSL-bounded exploration) can outperform raw model capacity improvements, suggesting that investment in research process integrity may yield higher returns than simply scaling agent complexity or model size
  • The fully causal walk-forward strategy achieving +2.00 Sharpe with all parameters chosen from past data alone provides a compelling template for production deployment of AI-generated quantitative strategies, addressing the critical gap between backtest performance and live trading results

TL;DR

  • AQuA 提出"非对称自由"架构,将评估器(数据分割、特征、标签、评估标准)与探索性 Agent 完全隔离,从根本上阻断数据泄露路径
  • 系统由两个独立研究循环组成:Part I 在加密货币市场发现符号化 alpha 因子,Part II 在美国股票市场发展时序预测模型,两者共享零 Agent、零记忆、零状态
  • Part I 在 20 个研究周期后,加密货币五分钟宇宙的综合验证 Spearman IC 达到约 0.190,显著优于 AlphaMemo (0.171)、AlphaGen (0.151) 及传统模型
  • Part II 的混合模型(1D 卷积 + LSTM/Mamba/Attention + 截面融合)在美股日内预测中取得 +0.0843 单股 IC,较最优基线 GRU (+0.0613) 提升 37.5%
  • 基于 Part II 信号构建的美元中性多空组合,在 2bps 交易成本下实现 +2.50 夏普比率,2021-2025 年每年均为正收益

为什么值得看

本文针对 AI 驱动量化研究中最致命的"数据泄露自我强化"问题提出了工程级解决方案,为金融 AI 研究的可复现性提供了可落地的架构范式。其"非对称自由"设计理念对任何涉及 Agent 自主实验的科学计算场景(如药物发现、材料科学)均具有直接借鉴价值。

技术解析

  • 核心架构 - 非对称自由(Asymmetric Freedom):AQuA 的关键创新在于将"评估基础设施"冻结为不可变边界,Agent 仅在受限 DSL(领域特定语言)内部自由探索。Part I 中,时间序列算子仅读取滞后窗口,截面算子仅读取当前时间戳,确保因果闭合;Part II 中,每次假设仅为一个配置差异(架构/损失/采样器/优化器),保证变体可比性。
  • Part I - 管理器中介的因子发现管道:由六个 Agent(数据管理员、视觉分析师、想法挖掘器、因子评估器、回测工程师、研究图书管理员)组成,所有交互经 AI 管理器中转以确保可审计性。因子以"可证伪假设"形式进入(含机制、预测方向、反驳条件),而非直接表达式。三个反馈循环运行:回测内方向校准、运行内证伪驱动信念更新、跨运行记忆引导搜索。
  • Part II - 配置驱动的模型开发:预测美股日内 30 分钟向前收益。训练集 2010-2019,2020 年为隔离窗口(完全不可访问),2021-2025 为 untouched 测试集。选择仅使用训练窗口末尾的内验证切片。预测器为混合架构:多尺度 1D 卷积前端 + 可配置骨干(LSTM/Mamba/Attention)+ 截面混合阶段 + 门控融合 + 逐股票池化输出。
  • 基准测试结果:Part I 综合 IC 0.190 vs. AlphaMemo 0.171、AlphaGen 0.151、LSTM 0.137、LightGBM 0.106、Alpha158 基线 0.075。Part II 单股 IC:Ridge +0.0251、LGB +0.0397、xLSTM +0.0434、LSTM +0.0535、GRU +0.0613、混合模型 +0.0843。
  • 从信号到策略:单股得分转化为美元中性阈值多空组合(2bps 双边成本),行业中性化后持有期夏普 +2.15,加入因果波动率目标叠加层后提升至 +2.50。全因果滚动窗口选择所有参数仍达 +2.00 夏普。2021-2025 年夏普分别为 +1.7、+3.5、+1.9、+1.8、+2.7,2022 年回撤中仍为正收益。

行业启示

  • Agent 系统的可靠性取决于边界设计而非指令优化:Prompt 级指令和审查 Agent 无法解决作者与审查者共享认知盲区的问题,真正的 integrity boundary 必须通过架构隔离(冻结评估器、限制 Agent 输出空间)实现。
  • 量化 AI 研究需要"可证伪性优先"的工作流:将因子/模型假设以结构化假设形式(机制、预测方向、反驳条件)而非表达式形式输入,可有效防止过拟合式"创意",提升研究过程的科学严谨性。
  • 独立研究循环的并行架构是规模化发现的可行路径:Part I 与 Part II 完全隔离的设计避免了跨任务状态污染,为金融 AI 中多策略、多资产类别的并行研究提供了可复用的工程模板。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Agent Agent Finance AI 金融AI Research 科学研究 LLM 大模型