Papers
Topics
Authors
Recent
Search
2000 character limit reached

AQuA: Recursively Self-Improving Quantitative Trading Research Agents

Published 13 Aug 2026 in cs.CL and cs.AI | (2608.12841v1)

Abstract: We study recursive self-improvement at the level of quantitative-investment research: whether an autonomous system can use evidence from earlier experiments to improve the hypotheses and candidates proposed in later iterations. We present AQuA, which comprises two separate language-model-driven research systems: one for symbolic factor discovery and one for trainable model development. The two systems do not share agents, memories, candidate spaces, or research state. Instead, each independently closes its own research loop by retaining validated evidence and using it to guide subsequent proposals. In this bounded sense, both systems implement recursive self-improvement at the level of the research process. Each system also uses its own sealed sandbox, which fixes the data splits, feature and label definitions, and evaluator while allowing the model to act only through constrained factor expressions or configuration diffs. The factor system, a manager-mediated multi-agent pipeline, discovers and combines factors into a signal that reaches a combined information coefficient of about $0.190$ on a crypto universe. The model system, a config-driven loop over a hybrid time-series architecture, reaches a per-stock information coefficient of $+0.0843$ on US equities and converts it into a threshold long/short strategy with a held-out Sharpe of up to $+2.50$ at a two-leg cost. The strategy is positive in every year from 2021 to 2025.

Summary

  • The paper demonstrates that research agents can improve recursively by using persistent, validated evidence to guide future hypotheses while keeping data, labels, splits, and evaluators fixed.
  • The paper applies this method independently to symbolic crypto factor discovery and US-equity time-series modeling, achieving a combined factor IC of approximately 0.190 and a held-out model IC of 0.0843 versus 0.0613 for a GRU.
  • The paper shows that sealed candidate spaces and causal evaluation reduce generation leakage, while test-set isolation remains a governance risk; the resulting portfolio reaches a cost-adjusted Sharpe of up to 2.50, or about 2.0 under causal walk-forward testing.

AQuA: Recursive Self-Improvement Under a Sealed Quantitative-Research Contract

"AQuA: Recursively Self-Improving Quantitative Trading Research Agents" (2608.12841) studies recursive self-improvement not as modification of a LLM’s weights, but as improvement of an autonomous quantitative-research process. Its central question is whether a research agent can retain validated empirical evidence and use that evidence to generate better hypotheses and candidates in subsequent iterations. The paper’s answer is affirmative within a bounded setting: recursive improvement is feasible when the agent can adapt its search strategy and persistent research state, while the data pipeline, feature definitions, labels, splits, and evaluator remain outside the adaptive surface.

AQuA consists of two independent systems. Part I performs symbolic factor discovery in a crypto five-minute universe; Part II develops trainable time-series models for thirty-minute US-equity return prediction. The systems do not share agents, memories, candidate spaces, outputs, or experimental state. This separation is methodologically important. The paper does not claim to construct a single integrated self-improving trading intelligence. Instead, it demonstrates that the same recursive research pattern can operate independently over two different search spaces: symbolic factor expressions and model-training configurations.

The reported results are substantial but should be interpreted within the paper’s experimental scope. Part I produces a combined factor signal with an information coefficient of approximately $0.190$. Part II reaches a per-stock information coefficient of +0.0843+0.0843, compared with +0.0613+0.0613 for its strongest baseline, a GRU. This corresponds to an absolute gain of +0.0230+0.0230 and a relative improvement of 37.5%37.5\%. When converted into a dollar-neutral threshold long/short portfolio with a two-leg turnover cost of $2$ basis points, the model achieves a held-out Sharpe ratio of up to +2.50+2.50 and remains profitable in every year from 2021 through 2025. A stricter causal walk-forward procedure reduces the Sharpe ratio to approximately +2.0+2.0.

Research-Process Recursion

The paper formalizes each system as a closed research loop. An iteration begins with a hypothesis, constructs or trains a candidate, evaluates it on held-out data, validates its robustness and causal integrity, selects or combines surviving candidates, and finally updates persistent research state. The updated state conditions the proposal distribution of the next iteration.

The recursive component is therefore procedural rather than parametric. Neither system updates the underlying LLM, changes the evaluator, or modifies the definition of success. Instead, validated observations are converted into reusable knowledge. In Part I, this knowledge takes the form of factor records, mechanism-specific beliefs, event profiles, and selection policies. In Part II, it consists of empirical results associated with architecture, loss, sampler, optimizer, and configuration changes.

This distinction avoids an overly broad interpretation of “self-improvement.” AQuA does not demonstrate open-ended autonomous scientific intelligence, and it does not establish that an agent can independently revise its own objectives. It demonstrates a narrower but operationally meaningful property: the sequence of research decisions improves through memory-mediated feedback while the experimental contract remains fixed.

The two systems and their separate recursive loops are summarized below. Figure 1

Figure 1: AQuA separates factor discovery and model development into independent agents, memories, search spaces, and persistent research loops.

The paper’s main methodological contribution is the use of asymmetric freedom. The agent is granted flexibility within a restricted domain-specific language, while the evaluator and data path are structurally inaccessible. This is intended to prevent recursive improvement from amplifying accidental artifacts. If an agent can write an invalid feature or manipulate the evaluation procedure, a high-scoring error may be stored as successful precedent and subsequently reinforced. AQuA instead attempts to ensure that admissible candidates are causally valid by construction.

Sealed Sandboxes and Evaluation Integrity

The motivation for the sealed sandbox is the well-established vulnerability of quantitative research to backtest overfitting, temporal leakage, adaptive test-set reuse, and evaluator misspecification. In a conventional code-generating loop, an agent may produce a feature that appears backward-looking but includes information from the future. A separate reviewing agent may fail to identify the problem because it reasons from the feature’s semantic description rather than its precise temporal footprint.

The appendix provides a concrete example. An earlier system generated an intraday volume-participation feature whose numerator used volume observed up to the current minute, but whose denominator used total daily volume. Although the feature description sounded causal, the denominator included future bars. The resulting high held-out IC disappeared after a clean re-split and was ultimately traced to this full-day normalization. The example supports one of the paper’s strongest claims: LLM-based code review is advisory rather than structural when the author and reviewer share similar blind spots.

AQuA responds by restricting the agent’s action space. In Part I, candidates are expression trees formed from a registry of raw fields and causal operators. Time-series operators access only trailing windows, while cross-sectional operators access only the current timestamp. Since arbitrary future-looking primitives cannot be expressed, causality is closed under composition.

In Part II, the agent emits configuration diffs rather than experimental code. These diffs select registered architectures, losses, samplers, optimizers, and normalization options. They cannot redefine the data loader, chronological split, label construction, or evaluator. Each configuration corresponds to one directly comparable model variant.

The paper also distinguishes between two leakage channels. Generation leakage occurs when the agent creates a feature, label, or preprocessing operation that accesses unavailable information. The operator and configuration registries address this channel structurally. Selection leakage occurs when repeated adaptive search allows the agent to optimize indirectly against the final reported metric. AQuA mitigates this by returning validation scores during search while reserving the final test window for one-time evaluation after the search is frozen.

This second protection is weaker than the first. The data path is constrained by software, but test isolation depends partly on governance and operator discipline. The authors explicitly acknowledge that an operator with access to the research store could consult the test results and violate the protocol. Thus, the sandbox provides a strong causal interface but not a cryptographic guarantee of test confidentiality.

Part I: Memory-Based Symbolic Factor Discovery

Part I implements a manager-mediated multi-agent pipeline for discovering interpretable formulaic factors. The manager transforms a research goal into a sequence of assignments for six specialized agents: Data Steward, Visual Analyst, Idea Miner, Factor Evaluator, Backtest Engineer, and Research Librarian. Agents do not directly call one another; all handoffs pass through the manager, improving run-level auditability and reproducibility.

The pipeline begins with data quality assessment and event profiling. Rather than immediately synthesizing formulas, the system first searches historical data for representative market events and extracts structured event profiles. The Idea Miner then proposes factors as falsifiable economic hypotheses, specifying a mechanism, expected direction, target labels, refutation criteria, and anticipated failure modes. This proposal-first interface is intended to distinguish economically motivated factor discovery from unconstrained formula optimization.

The Factor Evaluator applies a common evaluation contract to each candidate. Its diagnostics include information coefficients over multiple forward horizons, monthly stability, held-out behavior, market-regime dependence, turnover, expression complexity, correlation with the existing factor pool, and comparisons against price, volume, open-interest, basis, and taker-flow baselines. Event-conditioned factors are also evaluated inside their hypothesized event windows and against control regions.

The Backtest Engineer performs direction calibration by testing both the proposed and reversed signal orientations. This is a practical safeguard against confusing predictive content with an initially incorrect economic sign. The final factor record includes the expression, direction, horizon, mechanism, supporting diagnostics, and simulated trading behavior.

Cross-run memory is the essential recursive element. The Research Librarian stores observations from completed experiments and updates beliefs about mechanisms in particular market contexts. Later runs can prioritize mechanisms with positive evidence, avoid repeatedly unsuccessful hypotheses, and vary event definitions, horizons, or conditioning variables. The resulting loop is not merely a sequence of independent LLM prompts; it is a stateful search process whose proposal distribution changes according to accumulated validation evidence.

A representative research direction concerns open-interest crashes followed by weak price rebounds. The system hypothesizes that a rebound unsupported by aggressive taker flow is more likely to fail. The strongest factors in this family achieve single-factor IC values approximately between $0.026$ and $0.037$. These values are modest individually, consistent with the expected strength of intraday signals, but the system uses them as components of a factor library rather than treating any one expression as sufficient.

The combined signal improves as the system accumulates and reuses validated evidence. Figure 2

Figure 2: The combined Part I validation IC increases across autonomous research iterations and reaches approximately +0.0843+0.08430 under the paper’s crypto-specific convention.

The reported combined IC of approximately +0.0843+0.08431 should not be compared numerically with Part II’s +0.0843+0.08432. Part I reports a combined-factor Spearman IC on a crypto five-minute universe, whereas Part II reports a per-stock time-series IC under a different evaluation convention. The results support the narrower claim that persistent mechanism-level memory can improve aggregate factor construction across iterations.

Part II: Autonomous Development of Hybrid Time-Series Models

Part II replaces symbolic expression search with a configuration-driven model-development loop. Each hypothesis is a single configuration diff that changes one or more registered components of the training system. The framework compiles the configuration, trains the resulting model, evaluates it through the fixed evaluator, and updates a knowledge store used by subsequent iterations.

The experimental task is thirty-minute forward-return prediction for US equities. Training uses 2010–2019 data, 2020 serves as an embargo gap, and the final test period is 2021–2025. Early stopping and checkpoint selection rely only on an inner validation slice from the training period. The test window is not used for model ranking.

The architecture combines local feature extraction, temporal sequence modeling, cross-sectional interaction, and configurable prediction heads. Its convolutional front-end processes multi-horizon return, volatility, and risk-adjusted momentum features using multiple scales. A temporal backbone captures longer-range dependencies through a recurrent, state-space, or attention-based module; the reported experimental configuration uses attention. Cross-sectional mixing enables interaction across stocks, after which gated branches are fused and mapped to a scalar score for each stock. Figure 3

Figure 3: Part II iterates over directly comparable configuration diffs while keeping splits, features, labels, and evaluation logic fixed.

Figure 4

Figure 4: The hybrid model combines multi-scale temporal convolutions, a configurable sequence backbone, auxiliary context, and a scalar prediction head.

The feature-level ablations indicate that the predictive signal is distributed across nonlinear temporal interactions rather than concentrated in any individual input. Representative price-volume features have held-out IC magnitudes below approximately +0.0843+0.08433, and a ridge combination reaches only +0.0843+0.08434. The model comparison shows a progression from linear and tree-based methods to recurrent networks and finally the hybrid architecture:

Model Held-out per-stock IC
Ridge +0.0843+0.08435
LightGBM +0.0843+0.08436
xLSTM +0.0843+0.08437
LSTM +0.0843+0.08438
GRU +0.0843+0.08439
Hybrid model +0.0613+0.06130

The hybrid model’s advantage is therefore not attributable simply to a stronger individual feature. It is consistent with the hypothesis that local patterns, temporal dependencies, and cross-sectional structure jointly contain predictive information that shallow models fail to capture.

The evaluation engine reports raw per-stock IC, a per-stock +0.0613+0.06131 defined as the cross-sectional mean of squared IC, and a threshold long/short Sharpe under a two-leg turnover cost. The hybrid model reaches an +0.0613+0.06132 of +0.0613+0.06133. However, the economic interpretation of this metric requires caution: the paper’s +0.0613+0.06134 is not a conventional return-forecasting regression +0.0613+0.06135, but a squared-IC aggregation.

From Prediction to Portfolio Performance

The model’s scalar predictions are converted into a dollar-neutral threshold portfolio. Stocks above an upper score threshold are held long and stocks below a lower threshold are held short. The portfolio is sector-neutralized, volatility-targeted using a causal trailing-volatility estimate, and evaluated with gross exposure equal to one and a two-leg turnover cost of +0.0613+0.06136 basis points.

Sector neutralization raises the held-out Sharpe to +0.0613+0.06137. Causal volatility targeting increases it to +0.0613+0.06138. The paper emphasizes that the construction parameters are selected using the training period, while the reported test period remains untouched. The strategy’s annual Sharpe ratios are positive in all five test years: +0.0613+0.06139 in 2021, +0.0230+0.02300 in 2022, +0.0230+0.02301 in 2023, +0.0230+0.02302 in 2024, and +0.0230+0.02303 in 2025. Figure 5

Figure 5: The volatility-targeted dollar-neutral portfolio compounds across 2021–2025 and avoids the principal 2022 drawdown experienced by the long-only QQQ benchmark.

The comparison with QQQ is illustrative rather than risk-equivalent. QQQ is long-only, while AQuA’s portfolio is dollar-neutral and volatility-targeted. Consequently, the equity curves should not be interpreted as a direct benchmark comparison. The more informative evidence is the strategy’s persistence across market regimes and its retention of a Sharpe ratio near +0.0230+0.02304 under fully causal walk-forward selection.

Nevertheless, the performance results warrant conservative interpretation. The data cover one equity market, one intraday horizon, and one specified feature pipeline. The paper does not report live trading, market-impact validation beyond the simplified turnover cost, capacity analysis, or performance across multiple independent asset classes. A high Sharpe ratio in a single simulated environment can still reflect unmodeled frictions, residual dependence, or dataset-specific structure even when the stated train-validation-test protocol is respected.

Theoretical and Practical Implications

Theoretically, AQuA frames autonomous research as a controlled adaptive system rather than an unconstrained code-generation process. Its main abstraction is a research-state transition: validated evidence updates a persistent state, and that state influences subsequent candidate generation. This abstraction applies beyond quantitative finance to any domain in which an agent proposes experiments against a fixed evaluator.

The separation between generation and selection leakage is particularly useful. Many autonomous research systems focus on preventing invalid artifacts but neglect the possibility that repeated access to a validation metric induces adaptive overfitting. Conversely, withholding a test metric is insufficient if the agent can generate features or labels with future information. AQuA’s two-channel analysis suggests that reliable autonomous experimentation requires both a restricted action space and an evaluation protocol that limits adaptive exposure.

Practically, the work supports several design principles. Candidate spaces should be expressed as typed registries or DSLs with explicit causal and semantic constraints. Experimental variants should be atomic and reproducible, ideally represented as configuration diffs. Research memory should preserve not only scores but also failure modes, mechanism hypotheses, regime conditions, and refutation evidence. Finally, evaluation should distinguish the metric used for search from the metric used for final reporting.

The strongest and most consequential claim is that recursive improvement should be applied to the research process while keeping the experimental contract invariant. This differs from allowing an agent to modify its own objective, evaluator, or data. The constraint limits open-ended autonomy, but it provides a more defensible basis for attributing improvements to accumulated evidence rather than to progressively weakened standards.

Limitations and Future Development

AQuA’s two systems operate on different markets and horizons: crypto at five-minute frequency for factor discovery and US equities at thirty-minute frequency for model development. The paper does not establish transfer across assets, frequencies, market microstructures, or cost regimes. It also withholds the deployed factor expressions and exact feature set, limiting external reproducibility and independent analysis of economic interpretation.

The systems remain human-bounded. Human operators define research goals, construct the sandbox, supervise promotion, and control the experimental protocol. The resulting autonomy is therefore conditional and infrastructure-dependent. Moreover, test isolation is procedural rather than technically enforced, and the simulated transaction-cost model does not substitute for live execution evidence.

The most natural extension is to couple Part I and Part II by feeding discovered factors into the trainable model. The authors correctly identify this as a new leakage risk. If factor discovery and model development use overlapping data and exchange results adaptively, the factor library becomes an additional adaptive component. A sound integration would freeze the factor library before model search begins, or maintain separate nested splits and independent research states.

Further developments could include cryptographically enforced test-set access, independent evaluator replication, multi-market validation, capacity and impact modeling, online drift detection, and explicit controls for multiple-hypothesis testing across recursive iterations. More ambitious systems could also learn representations of failed hypotheses and transfer them across related markets, provided that such transfer is included in the pre-specified evaluation contract.

Conclusion

AQuA presents a disciplined architecture for recursive self-improvement in quantitative research. Its contribution is not a new sequence-model primitive or a single superior factor expression, but the combination of persistent experimental memory, constrained candidate spaces, sealed data paths, and split evaluation protocols. Part I demonstrates iterative improvement in mechanism-driven symbolic factor discovery, reaching a combined crypto IC of approximately +0.0230+0.02305. Part II demonstrates autonomous configuration search over hybrid time-series models, reaching a held-out equity IC of +0.0230+0.02306 and a cost-adjusted Sharpe of up to +0.0230+0.02307, with approximately +0.0230+0.02308 under causal walk-forward selection.

The results support recursive improvement as a useful property of research systems, but only under explicit limits. The agent may improve hypotheses, candidate designs, and search priorities; it should not control the data-generating contract or the final evaluator. That separation is the paper’s central methodological result and the principal condition under which autonomous quantitative research can remain scientifically interpretable.

Whiteboard

Explain it Like I'm 14

1. What is this paper about?

This paper presents AQuA, a system that uses artificial intelligence to help research trading strategies.

The main idea is that an AI system can:

  1. Suggest a possible trading idea.
  2. Test it using historical market data.
  3. Learn from the result.
  4. Suggest a better idea next time.

This repeated cycle is called recursive self-improvement. It does not mean that the AI changes its own brain or rewrites itself. Instead, it remembers which experiments worked and uses that information to guide future experiments.

AQuA contains two separate AI research systems:

  • One searches for useful market signals, called factors.
  • The other designs and improves machine-learning models for predicting stock returns.

These systems do not share their memories, agents, or results.

2. What questions are the researchers asking?

The paper mainly investigates three questions:

  • Can an AI system improve its trading research by learning from earlier experiments?
  • Can it search for useful trading signals and models without accidentally using future information?
  • Can the resulting signals work on market data that the AI did not use while searching?

The researchers are especially concerned about data leakage. This happens when a trading system accidentally uses information from the future. For example, imagine trying to predict tomorrow’s weather while secretly looking at tomorrow’s newspaper. The prediction would appear very accurate, but it would not be fair.

The paper also asks whether AI can be given enough freedom to explore while still being prevented from “cheating.”

3. How did the researchers build and test AQuA?

A sealed testing environment

AQuA works inside a carefully controlled sandbox. A sandbox is like a safe computer laboratory where the AI can perform only approved actions.

Before the AI begins, human researchers fix:

  • Which data the system can use.
  • How the data is divided into training, validation, and test periods.
  • Which features and prediction targets are allowed.
  • How performance will be measured.

The AI cannot change these rules. It can only choose from approved building blocks.

This is similar to asking a student to build different machines using pieces from a box, while preventing the student from changing the test or secretly adding extra parts.

The system also keeps the final test data hidden during the search. The AI uses a validation set to compare ideas, but the final test period is checked only after the chosen system is finished.

Part I: Searching for market factors

The first system searches for factors. A factor is a mathematical rule that may contain information about future price movements.

For example, a factor might examine:

  • Recent price changes.
  • Trading volume.
  • Open interest, which shows how many futures contracts are active.
  • The relationship between buying pressure and price movement.
  • Volatility, which measures how much prices move up and down.

The system uses several AI “specialists,” each with a different job:

  1. A Data Steward checks and organizes the market data.
  2. A Visual Analyst looks for interesting patterns around important market events.
  3. An Idea Miner suggests possible explanations and trading signals.
  4. A Factor Evaluator tests the signals.
  5. A Backtest Engineer simulates how the signal might perform in trading.
  6. A Research Librarian records the results for future experiments.

The system writes down why a factor should work and what evidence would prove it wrong. This makes the ideas falsifiable, meaning they can fail a clear test instead of being declared successful no matter what happens.

The factors are built from a restricted set of mathematical operations, such as calculating averages, rankings, changes, and correlations. Because these operations can use only past or current information, the AI cannot create a factor that directly looks into the future.

Part II: Improving machine-learning models

The second system develops a model that predicts the return of each US stock over the next 30 minutes.

Instead of writing completely new computer programs, the AI changes a controlled configuration file. It can adjust things such as:

  • The model’s architecture.
  • How much historical information it examines.
  • The way it learns.
  • The training settings.
  • The types of approved neural-network components it uses.

The final model combines several kinds of tools:

  • Convolutions, which detect short-term patterns, like recognizing a shape in a picture.
  • Sequence models, which study how events change over time.
  • Attention, which helps the model focus on the most important parts of a sequence.
  • Cross-stock information, which allows it to compare different stocks.

The model is trained on data from 2010–2019. The year 2020 is left as a gap, and the final test uses data from 2021–2025. This helps test whether the model works in a later and unseen market period.

4. What did the researchers find?

Results from the factor-discovery system

The factor system was tested on cryptocurrency data using five-minute time intervals.

Individual factors were usually fairly weak. Their information coefficients were often around 0.03. An information coefficient, or IC, measures how well a signal’s rankings match the future rankings of returns. An IC near zero means little useful relationship; a higher positive value means the signal is more often pointing in the right direction.

However, the system combined many factors into one larger signal. This combined signal reached an IC of about 0.190.

The researchers say the improvement came from allowing the AI to:

  • Remember which ideas worked before.
  • Avoid ideas that repeatedly failed.
  • Study special market events.
  • Consider different market conditions.
  • Combine several smaller signals.

The important point is that the system did not rely on one magical rule. It built a stronger result by combining many modest clues.

Results from the model-development system

The second system was tested on US stocks. Its hybrid model achieved a per-stock IC of +0.0843.

This was better than the strongest comparison model, a GRU, which achieved +0.0613. The difference was about a 37.5% relative improvement.

The researchers then used the model’s predictions to create a trading strategy:

  • Buy stocks with especially high predicted returns.
  • Sell stocks with especially low predicted returns.
  • Keep the strategy roughly neutral to the overall market.
  • Reduce the effect of different risk levels.
  • Include a trading cost of 2 basis points for both sides of a trade.

The strategy achieved:

  • A held-out Sharpe ratio of up to +2.50.
  • About +2.00 under a stricter walk-forward test.
  • Positive performance in every year from 2021 through 2025.

A Sharpe ratio is a way to compare reward with risk. A higher number generally means the strategy earned more return for the amount of uncertainty it took. A walk-forward test is especially useful because it imitates real life: the system can use only information available before each new period.

Why are these results important?

The results suggest that AI systems can help with complicated trading research while learning from previous experiments.

More importantly, the paper argues that how the experiment is designed may matter as much as how clever the AI is. If an AI is allowed to change the data, the rules, or the scoring system, it might find ways to produce impressive-looking but unreliable results.

AQuA tries to prevent this by protecting the data and evaluation process from the AI.

5. What could this research mean?

The paper shows a possible way to build safer and more reliable AI research assistants. The same idea could be useful outside finance, such as in:

  • Drug discovery.
  • Materials science.
  • Engineering.
  • Climate research.
  • Automated software testing.

In all these areas, an AI might run many experiments and learn from the results. But the experiment rules must be protected so that the AI cannot accidentally or deliberately make the test easier.

The paper also suggests a possible next step: joining the two AQuA systems together. The factors discovered in the first system could become inputs for the model developed by the second system. However, this would create a new risk. The two systems might share hidden information and accidentally overfit to the same data. The researchers say the factor library would need to be frozen before the second system used it.

Important limitations

The results should not be treated as proof that the strategies will make money in real markets.

The researchers acknowledge that:

  • The factor system was tested only on one cryptocurrency setting.
  • The model system was tested only on US equities and one prediction horizon.
  • The results came from computer simulations rather than live trading.
  • Real trading may involve costs, delays, and market behavior that the simulation does not fully capture.
  • Human researchers still choose the research goals, build the sandbox, and supervise the system.
  • Keeping the final test data hidden depends partly on careful procedures and human honesty, not on a completely unbreakable technical lock.

Simple conclusion

AQuA is a framework for letting AI conduct trading research in a repeated learning cycle. It proposes ideas, tests them, remembers the evidence, and uses that evidence to make better proposals later.

The paper’s strongest lesson is that an AI research system needs both creativity and strict boundaries. AQuA’s AI is allowed to explore many possibilities, but it cannot change the data or the rules used to judge its ideas.

The experiments produced promising results in cryptocurrency and stock markets. Still, the findings are best understood as evidence that this type of carefully controlled AI research is possible—not as a guarantee that the strategies will always work or earn money in the real world.

Knowledge Gaps

Knowledge gaps, limitations, and open questions

  • Generalizability across markets and horizons remains untested: Part I is evaluated only on a crypto five-minute universe, while Part II is evaluated only on US equities at a thirty-minute prediction horizon.
  • The robustness of the reported results across alternative time periods is unclear: Although Part II reports yearly Sharpe ratios for 2021–2025, the paper does not evaluate earlier, rolling, or substantially different market regimes using the same frozen methodology.
  • Live-trading validity has not been established: The results are based entirely on simulated backtests and a simplified turnover-cost model; execution delays, market impact, bid–ask spreads, liquidity constraints, borrow fees, short-sale restrictions, and capacity are not assessed.
  • The crypto factor system is not evaluated with a fully independent final test set: Part I reports progression and a combined validation IC of approximately $0.190$, but the paper does not clearly specify an untouched test period that was never used for iteration, selection, or memory updates.
  • Test-set isolation is not technically enforced: The paper acknowledges that Part II’s final test window is protected mainly through protocol and operator discipline, leaving open the possibility of human access or inadvertent test-informed decisions.
  • The amount of adaptive search is not reported: The number of iterations, candidates, failed experiments, prompts, model calls, and accumulated comparisons is unspecified, preventing assessment of multiple-testing and search-induced overfitting.
  • The statistical significance of performance is not quantified: Confidence intervals, standard errors, bootstrap results, deflated Sharpe ratios, probability of backtest overfitting, and corrections for the large number of evaluated candidates are absent.
  • The stability of results across random seeds is unknown: The paper does not report variation from model initialization, minibatch ordering, distributed training, stochastic sampling, or language-model generation.
  • The contribution of recursive self-improvement is not isolated: There is no controlled comparison against one-shot search, random search, memory-free agents, non-agentic optimization, or agents with shuffled/incorrect memories.
  • The effect of each component of the research pipeline is unclear: The paper does not provide ablations for the manager, specialist agents, falsifiable proposals, belief updates, event profiling, direction calibration, memory, or policy stores.
  • The claimed recursive improvement may be confounded with increasing search resources: The reported progression could reflect more candidates, more compute, or broader exploration rather than improved reasoning or effective reuse of prior evidence.
  • The quality and reliability of persistent research memory are not evaluated: It is unknown how often the memory contains incorrect conclusions, whether erroneous beliefs persist, how conflicts are resolved, or whether memory causes premature concentration on favored mechanisms.
  • The economic validity of language-model-generated hypotheses is not independently assessed: The paper does not test whether the stated mechanisms improve discovery beyond unconstrained factor generation or whether the explanations are post hoc rationalizations.
  • Part I’s factor-level reproducibility is limited: The deployed factor expressions are withheld, and the paper does not provide sufficient operator settings, factor lists, weights, selection thresholds, or run-level records to reproduce the combined signal.
  • The construction of the Part I combined signal is underspecified: The aggregation method, factor weighting, rebalance rules, portfolio constraints, turnover treatment, and handling of correlated or redundant factors are not fully described.
  • The comparability of Part I’s combined IC is unresolved: The approximately $0.190$ combined-factor IC is based on a convention different from Part II’s per-stock IC, and the paper does not provide standardized metrics that would allow comparison with other factor-mining systems.
  • The baseline comparisons are incomplete: Part I lacks quantitative comparisons with established factor-mining algorithms, conventional quantitative researchers, random DSL search, and non-LLM evolutionary or reinforcement-learning methods under identical search budgets.
  • Part II’s architecture is not fully reproducible: Precise convolutional configurations, feature definitions, label construction, model dimensions, regularization, training duration, checkpoint rules, and other implementation details are omitted.
  • The source and composition of the US equity universe are unspecified: Universe membership, delisted stocks, survivorship-bias controls, corporate-action treatment, liquidity filters, and inclusion/exclusion rules are not reported.
  • Potential cross-sectional and temporal data issues are insufficiently documented: The paper does not fully explain how missing data, asynchronous observations, market halts, ticker changes, corporate events, and timestamp alignment are handled.
  • The 2020 embargo gap is not justified empirically: It is unclear whether the gap reduces leakage, models a realistic deployment delay, or materially affects performance relative to other embargo lengths.
  • The reported trading strategy depends on post-model transformations whose robustness is uncertain: Sector neutralization, threshold selection, rebalancing cadence, exposure scaling, and volatility targeting are not evaluated across alternative specifications and may contribute substantially to the Sharpe improvement.
  • The $2$ bps two-leg cost assumption may be optimistic: Performance under wider spreads, nonlinear market impact, different turnover penalties, and stock-specific transaction costs is not reported.
  • Capacity and scalability are unexplored: The paper does not estimate how much capital the strategy can trade before its signal decays or its execution costs materially reduce returns.
  • Risk analysis is incomplete: Maximum drawdown, tail losses, skewness, turnover, leverage, exposure concentration, liquidity concentration, factor exposures, and sensitivity to extreme events are not fully reported.
  • The relationship between predictive IC and economic returns is not analyzed in depth: The paper does not explain why the reported IC translates into the stated Sharpe ratios or how stable that mapping is across stocks, periods, and portfolio constructions.
  • The strongest hybrid model’s incremental mechanism is unclear: No ablation determines whether the improvement comes from convolutions, attention, cross-sectional mixing, gating, multi-resolution processing, the loss function, or interactions among these components.
  • The model search space is only partially characterized: The paper does not report its size, coverage, constraints, or whether important architecture and optimization alternatives were excluded from the registry.
  • The evaluator’s correctness is assumed rather than independently audited: The sealed evaluator prevents agent modification, but the paper does not provide an external audit, formal verification, or adversarial testing showing that the evaluator itself correctly implements causal features, labels, costs, and portfolio rules.
  • Adversarial evaluator exploitation is not examined: Even within the DSL, candidates might exploit numerical instability, undefined operations, extreme values, degenerate outputs, or quirks in ranking and scoring without directly modifying the sealed data path.
  • The limits of the “leakage-free by construction” claim are not fully established: Causality of individual operators does not by itself rule out implementation bugs, improper missing-value handling, future-dependent universe membership, or leakage through preprocessing and metadata.
  • Human supervision remains a significant unresolved dependency: Humans define goals, sandboxes, registries, promotion rules, and supervision decisions, so the degree of autonomy and the risk of human-induced selection bias are not quantified.
  • The proposed coupling of factor discovery and model development is not implemented: It remains unknown whether Part I factors improve Part II performance after strict freezing, whether they are redundant with price-volume inputs, and whether coupling introduces measurable leakage or overfitting.
  • The cost and efficiency of autonomous research are not reported: Compute usage, wall-clock time, language-model expenditure, energy consumption, and researcher-equivalent productivity are absent.
  • Failure recovery and reproducibility under changed LLMs are unknown: The paper does not test whether the research process remains effective when the underlying model, prompt, temperature, context window, or agent ordering changes.
  • The persistence of performance after deployment is unresolved: No paper-controlled prospective or paper-trading experiment tests whether the discovered signals survive after the research period and after market participants potentially adapt to them.**

Practical Applications

Immediate Applications

  • Auditable quantitative-research platform for asset managers and hedge funds — Finance/software
    • Deploy AQuA-like workflows to generate, test, rank, and document symbolic alpha factors or model configurations without allowing agents to modify data splits, labels, preprocessing, or evaluators.
    • A practical product could include a factor research registry, experiment tracker, hypothesis templates, validation reports, and persistent research memory.
    • The manager-mediated pipeline can support workflows such as:
    • formulating an economic hypothesis;
    • generating a restricted factor expression;
    • evaluating predictive strength and stability;
    • testing turnover, regime dependence, and baseline redundancy;
    • recording the evidence for future research.
    • Dependencies: high-quality timestamped market data, human-authored causal feature definitions, a sufficiently expressive but safe DSL, and human review before production use.
  • Leakage-resistant model-development harness — Finance, machine learning, MLOps
    • Use the configuration-driven Part II design to compare neural architectures, losses, samplers, and optimizers through reproducible configuration diffs rather than unrestricted code generation.
    • Each experiment can be represented as a versioned configuration and automatically linked to its training data, validation score, model artifact, and approval status.
    • This could be integrated with existing experiment-management tools to prevent accidental changes to:
    • chronological data splits;
    • feature and label construction;
    • normalization procedures;
    • checkpoint selection;
    • final-test evaluation.
    • Dependencies: the registry must be reviewed for unsafe operations, and the test set must remain inaccessible to the search loop and separated from operator-facing dashboards.
  • Human-supervised intraday signal research — Quantitative trading
    • Investment firms could use the reported factor and model results as starting points for research into short-horizon crypto and US equity strategies.
    • For example, the Part I workflow can investigate event-conditioned signals involving open-interest changes, price rebounds, taker flow, basis, volume, and volatility. Part II can investigate multi-resolution sequence models for approximately 30-minute equity-return prediction.
    • The output should initially be a ranked research candidate or paper-trading signal rather than an automatically deployed strategy.
    • Dependencies: the reported results are market- and horizon-specific, rely on simulated transaction costs, and have not been validated in live trading. Liquidity, latency, borrow availability, slippage, fees, and market impact may substantially reduce performance.
  • Systematic factor-library construction — Asset management and financial research
    • The factor-discovery process can produce a structured library in which every factor is stored with its expression, expected direction, economic mechanism, target horizon, falsification criteria, historical performance, turnover, and correlations with existing factors.
    • Such a library could support:
    • portfolio construction;
    • factor diversification;
    • signal monitoring;
    • post-trade attribution;
    • periodic retirement of factors whose evidence deteriorates.
    • The mechanism-based records are especially useful for distinguishing genuinely different signals from superficial variations of the same price or volume rule.
    • Dependencies: factor descriptions must be standardized, validation must be repeated across assets and regimes, and the library must not be allowed to become an uncontrolled source of adaptive overfitting.
  • Research-governance and model-risk controls — Finance, regulated industry, policy
    • The paper’s distinction between generation leakage and selection leakage can be converted into an internal control framework for AI-assisted investment research.
    • Institutions can require:
    • immutable dataset and evaluator identifiers;
    • chronological and embargoed splits;
    • validation-only feedback during search;
    • one-time final-test evaluation;
    • immutable experiment logs;
    • approval gates before promotion to paper trading or live trading.
    • This creates an auditable chain from hypothesis to experiment to production decision.
    • Dependencies: test-set isolation is only partly technical in the paper and still depends on operator discipline, access control, and independent audits.
  • Reusable autonomous experimentation pattern for academia — Scientific computing and education
    • Researchers can adapt the sealed-sandbox pattern to benchmark machine-learning methods without permitting an agent to alter the benchmark, evaluation metric, or test data.
    • Suitable uses include automated ablation studies, hyperparameter exploration, symbolic-regression research, and reproducibility testing.
    • A dissertation or laboratory workflow could require the agent to emit only:
    • a DSL expression;
    • a configuration diff;
    • a formal hypothesis;
    • or a bounded experiment specification.
    • Dependencies: the benchmark must be designed before experimentation, and researchers must account for adaptive overfitting to validation metrics even when the test set is hidden.
  • Training and evaluation tool for quantitative-finance education — Universities and professional training
    • Students can use a restricted research environment to practice hypothesis formation, factor design, backtesting, and falsification without writing unrestricted code that inadvertently introduces look-ahead bias.
    • An educational product could compare:
    • a naive unrestricted workflow;
    • a constrained causal DSL workflow;
    • and a walk-forward evaluation workflow.
    • This would make common errors such as future leakage, test-set reuse, and excessive parameter search observable.
    • Dependencies: instructional environments should avoid presenting backtest Sharpe ratios as guaranteed investment performance and should include transaction costs, failure cases, and multiple-testing discussions.

Long-Term Applications

  • Coupled factor-discovery and model-development systems — Finance and autonomous investment research
    • A future AQuA system could pass validated crypto or equity factors from Part I into the Part II model-development loop, allowing neural models to learn nonlinear combinations of economically interpretable signals.
    • The factor library would need to be frozen before model training begins, or versioned as an immutable input, so that model selection cannot indirectly steer factor discovery.
    • A possible workflow is:
    • 1. discover factors on a designated research period;
    • 2. freeze and document the surviving factor set;
    • 3. train models using that fixed library;
    • 4. evaluate on a separately protected walk-forward period;
    • 5. repeat only after a new protocol is established.
    • Dependencies: strict information-flow control is essential; otherwise the coupled loops create a new selection-leakage channel.
  • Multi-market and multi-asset autonomous research — Finance
    • The framework could be extended from crypto five-minute data and US equity thirty-minute returns to futures, foreign exchange, commodities, options, bonds, and longer investment horizons.
    • Agents could search for market-specific mechanisms while preserving a common governance layer for causal features, cost modeling, and test isolation.
    • Potential products include cross-asset signal discovery services, adaptive research assistants for portfolio teams, and regime-aware factor monitoring systems.
    • Dependencies: transfer is not established by the paper. Each market requires new data-quality controls, liquidity assumptions, cost models, trading calendars, labels, and out-of-sample validation.
  • Live portfolio decision-support and semi-automated execution — Trading technology
    • After extensive paper trading and independent validation, the model output could support a portfolio-management workflow that:
    • ranks securities;
    • applies sector neutralization;
    • forms dollar-neutral long/short positions;
    • applies volatility targeting;
    • estimates turnover and transaction costs;
    • generates orders subject to risk and compliance limits.
    • Initially, the agent should recommend trades while a human approves them; later versions might automate only bounded components such as signal refresh or risk scaling.
    • Dependencies: live performance can diverge from backtests because of execution latency, market impact, crowding, short-sale constraints, data outages, model drift, and changing market microstructure. Regulatory approval and operational kill switches would also be required.
  • Continuous model-drift and factor-decay monitoring — Finance, risk management
    • The persistent evidence store could evolve into a monitoring service that detects when a factor’s information coefficient, sign, turnover, or regime concentration changes materially.
    • The system could recommend retraining or retirement, while preserving a fixed evaluation protocol to avoid reacting to noise.
    • Useful outputs would include factor health dashboards, drift alerts, explanation histories, and evidence-backed promotion or rollback decisions.
    • Dependencies: retraining policies must be specified in advance; otherwise continuous adaptation can itself overfit recent conditions. Monitoring data must remain distinct from the protected performance-evaluation data.
  • General-purpose safe autonomous experimentation infrastructure — Healthcare, energy, robotics, materials, and software
    • The paper’s core architecture can be generalized to any domain where an AI agent proposes experiments against a sensitive or expensive evaluator.
    • Examples include:
    • Healthcare: selecting model architectures for diagnosis or treatment prediction while freezing patient splits, labels, and safety metrics.
    • Energy: optimizing forecasting or control models while protecting future demand or price evaluation windows.
    • Robotics: searching controller configurations in a simulator with fixed safety constraints and test environments.
    • Materials science: proposing candidate compositions while preserving held-out synthesis and measurement benchmarks.
    • Software engineering: evolving algorithms or configurations against hidden test suites and resource limits.
    • The transferable design is to constrain what the agent can generate and separate the metric used for iteration from the metric used for final reporting.
    • Dependencies: each domain needs a domain-specific DSL, formally verified constraints, reliable simulators or datasets, and safety review. Financial-style benchmark leakage controls do not automatically guarantee clinical, physical, or operational safety.
  • Institutional benchmark and governance standards for autonomous AI research — Academia, industry, and policy
    • Policymakers, journals, and research organizations could require AI-generated empirical research to disclose:
    • the immutable data and split definitions;
    • the agent’s action space;
    • the metrics exposed during search;
    • the number of adaptive iterations;
    • the final test protocol;
    • the human approval process;
    • and all failed as well as successful experiments.
    • A standardized “autonomous experiment card” could accompany papers, investment models, or deployed systems.
    • Dependencies: standards would need consensus on auditability, secure logging, reproducibility, privacy, and how to handle proprietary data and confidential model research.
  • Automated hypothesis-generation systems for daily decision support — Consumer software and personal finance
    • In a distant and highly constrained form, similar systems could help individuals compare budgeting, savings, or investment strategies using simulated personal-finance data and fixed objectives.
    • The system might generate and test scenarios such as emergency-fund levels, spending rules, or diversified allocation policies rather than autonomously trading securities.
    • Dependencies: consumer deployment would require strong safeguards against presenting simulated results as financial advice, robust personalization, privacy protection, suitability checks, and human-readable uncertainty estimates. The paper does not directly validate such applications.

Glossary

  • Adaptive overfitting: Overfitting caused by repeatedly adjusting choices based on observed evaluation feedback. “repeated access to a fixed holdout can cause adaptive overfitting”
  • Attention: A neural-network mechanism that weights relationships among elements in a sequence. “state-space models~\cite{gu2023mamba}, and attention~\cite{vaswani2017attention}”
  • Backtest overfitting: Selecting or tailoring a strategy so that it performs well on historical data but fails on unseen data. “Backtest overfitting of this kind is well documented”
  • Basis: The difference between related market prices, often used as an indicator of futures-market conditions. “basis recovery indicate insufficient demand behind the rebound”
  • Causal volatility targeting: Adjusting exposure using only volatility information available before the prediction or trading decision. “A causal volatility-targeting overlay”
  • Checkpoint: A saved model state used for evaluation or later continuation of training. “early stopping and checkpoint choice”
  • Cross-sectional operator: An operation applied across multiple assets at the same timestamp. “cross-sectional operators that act across the universe at a fixed timestamp”
  • Cross-sectional mean: An average computed across entities, such as stocks, for a given observation or period. “the cross-sectional mean of squared IC”
  • Cross-sectional mixing: Combining information across different assets in a panel at each time step. “A cross-sectional stage then mixes information across the panel of stocks”
  • Cross-sectional normalization: Rescaling values relative to other entities in the same cross-section. “sector neutralization”
  • Data leakage: The unintended use of information that would not be available when a prediction or decision is made. “the central failure mode is data leakage”
  • Dollar-neutral: A portfolio construction in which the total long exposure approximately equals the total short exposure. “a volatility-targeted, dollar-neutral long/short book”
  • Domain-specific language (DSL): A restricted programming language designed for a particular application domain. “a restricted domain-specific language (DSL)”
  • Embargo gap: A period deliberately excluded from training and selection to reduce temporal contamination between datasets. “leave 2020 as an embargo gap”
  • Expanding median: A median calculated over a progressively growing historical window. “toward an expanding-median target”
  • Expanding window: A time-series evaluation or training window that grows as new observations become available. “walk_forward: expanding”
  • Expression tree: A tree representation in which operators form internal nodes and input variables form leaves. “A factor is a composition of these operators over the raw fields, represented as an expression tree”
  • Factor: A measurable variable or formula intended to explain or predict asset returns. “A factor is a composition of these operators over the raw fields”
  • Factor discovery: The process of searching for predictive financial variables or formulas. “one for factor discovery and one for model development”
  • Falsifiable hypothesis: A proposed explanation or prediction that specifies conditions under which it could be shown false. “Before assembling the expression, the agent states each factor as a falsifiable proposal”
  • Formulaic alpha: A mathematically specified trading signal intended to generate excess returns. “the standard vocabulary of formulaic-alpha operators”
  • Forward return: The return realized over a future interval relative to the time at which the prediction is made. “predict each stock's forward return over the next thirty minutes”
  • Generation leakage: Leakage introduced when an agent creates a feature, label, or transformation using unavailable future information. “Generation leakage enters when the agent can define a feature, label, or transform”
  • GRU (Gated Recurrent Unit): A recurrent neural-network architecture that uses gates to regulate information flow through a sequence. “a GRU, under the same evaluator”
  • Held-out data: Data reserved for evaluation and not used to fit or select a model. “evaluated on held-out data”
  • Information coefficient (IC): A correlation measuring the relationship between predictions and subsequent asset returns. “The combined validation information coefficient rises”
  • Inner-validation slice: A validation subset used during model development while preserving a separate final test set. “Model selection (early stopping and checkpoint choice) is driven only by an inner-validation slice”
  • Look-ahead bias: An evaluation error caused by using future information in a supposedly historical decision. “validated against look-ahead bias and regime dependence”
  • Long/short strategy: A strategy that takes long positions in some assets and short positions in others. “a threshold long/short strategy”
  • Market-neutral: Designed to minimize exposure to broad market movements. “The market-neutral book compounds more smoothly”
  • Multi-agent pipeline: A workflow in which multiple specialized agents perform coordinated stages of a task. “a manager-mediated multi-agent pipeline”
  • Multi-resolution stack: A neural architecture that processes information at multiple temporal or spatial scales. “deep multi-resolution stacks”
  • Out of sample: Evaluated on data unavailable during model development or selection. “The strategy is positive in every year from 2021 to 2025.”
  • Panel interaction: Modeling relationships among multiple entities observed over time. “times: 3 # panel interaction”
  • Per-stock time-series IC: An information coefficient calculated separately for each stock across time. “a per-stock time-series information coefficient”
  • Quantile portfolio: A portfolio formed by grouping assets according to ranked signal values. “The Backtest Engineer then turns the evaluated signal into a simple quantile portfolio.”
  • Recursive self-improvement: Iteratively using validated prior results to improve subsequent proposals or decisions. “We use recursive self-improvement in this bounded, research-process-level sense”
  • Regime dependence: Performance or behavior that varies according to a particular market environment. “validated against look-ahead bias and regime dependence”
  • Reinforcement learning: Machine learning in which an agent learns by receiving rewards or penalties for actions. “reinforcement learning~\cite{yu2023synergistic, zhang2026feedback, zhao2025quantfactor, zhao2025trajectory}”
  • Rolling rank: The rank of a value relative to observations within a moving historical window. “rolling rank, rolling standard deviation”
  • Rolling standard deviation: A standard deviation computed over a moving window of recent observations. “rolling standard deviation, linear-decay weighting”
  • Ridge: A linear regression method that uses regularization to reduce coefficient instability and overfitting. “a ridge linear combination of them”
  • Sharpe ratio: A risk-adjusted performance measure equal to excess return divided by return volatility. “a held-out Sharpe of up to +2.50+2.50
  • Sector neutralization: Adjusting positions or signals to remove systematic exposure to industry sectors. “Sector-neutralizing the score removes common sector exposure”
  • Selection leakage: Leakage caused by choosing candidates using the metric on which final performance will be reported. “Selection leakage enters when the agent can read the metric it will be judged on”
  • Sealed evaluator: A fixed evaluation component inaccessible to the adaptive model or agent. “the evaluator V\mathcal{V} are sealed and human-authored”
  • Sealed sandbox: A controlled environment that fixes data, evaluation, and permitted operations. “We contain it structurally by fixing a sandbox before any iteration begins.”
  • State-space model: A sequence model that represents evolving latent states to process temporal data. “state-space models~\cite{gu2023mamba}”
  • Stratified sampler: A sampling procedure that preserves specified proportions across categories or groups. “sampler: {kind: stratified_minute, batch: 8192}”
  • Temporal convolution: A convolution applied along the time dimension of sequential data. “temporal convolutions~\cite{bai2018empirical}”
  • Temporal alignment: Matching observations, features, labels, and decisions to their correct times. “A code-generating agent may inadvertently introduce a temporal-alignment or preprocessing error”
  • Threshold long/short book: A portfolio that takes long or short positions only when signals cross specified thresholds. “The score is turned into a dollar-neutral threshold long/short book”
  • Two-leg turnover cost: Trading cost incurred for both the long and short sides of a portfolio. “a two-leg turnover cost”
  • Turnover: The rate at which portfolio positions are traded or replaced. “turnover, expression complexity, and correlation with the existing factor pool”
  • Validation slice: A fixed subset used to score candidates during model or strategy search. “the harness returns to the agent only a score on a validation slice fixed in advance”
  • Walk-forward evaluation: Testing a model sequentially using only information available before each subsequent test period. “A stricter walk-forward evaluation”
  • Z-score: A standardized value indicating how many standard deviations an observation lies from a reference mean. “rank, z-score, sector neutralization”

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Tweets

Sign up for free to view the 1 tweet with 698 likes about this paper.