AI Strategies
AI strategy overview
AI strategies use machine-learning models—LSTM, LightGBM, and Transformer—to learn price patterns from high-dimensional factor data and make data-driven trading decisions. Unlike traditional strategies, an AI strategy includes a dedicated model node in its workflow. Factors are calculated in the Data Processing node, passed to the model for training and prediction, and emitted as a prediction column (pred) for the strategy node.
All three examples below are production templates from Create Strategy → Strategy Templates, covering three use cases:
💡 AI factor expressions are very long—33 technical factors plus multiple fundamental dimensions. Use View full configuration to expand the complete factor code, or Load to canvas to import the entire configuration into the strategy editor.
BTC timing — LSTM
BTC Timing — LSTM
Uses an LSTM (long short-term memory network) for hourly BTC timing. Its 61 input factors consist of 33 technical factors (volatility, microstructure, price-volume behavior, momentum, trend, oscillators, statistics, patterns, multi-horizon channels, and buying pressure), 14 BTC on-chain fundamental factors, and 14 BTC-specific factors. The model trains adaptively and predicts the direction of returns over the next six hours.
Multifactor long — LightGBM
Multifactor Long — LightGBM
Uses a LightGBM ranking model to rank instruments cross-sectionally within a Top 100 safety-screened universe. Inputs include 33 technical factors plus multi-instrument-compatible fundamental factors compiled for the 4h interval. The label is the return over the next six periods—about 24 hours at 4h resolution—with ranking conversion handled by the engine. The model ranks instruments by pred, buys the top five with equal weights, and rebalances every four hours.
Neutral hedge — Transformer
Neutral Hedge — Transformer
Uses a Transformer attention model to rank a Top 100 safety-screened universe cross-sectionally, buying the top five and shorting the bottom five for market-neutral exposure. It shares the factor system and universe of strategy #33 but uses a different model and position mode: the Transformer captures factor interactions and long-range temporal dependencies, while the neutral subtype automatically hedges beta.