Timing Strategies

Timing strategy overview

Timing is the most fundamental quantitative strategy type. It focuses on deciding when to buy or sell one or a small number of instruments, using signals such as technical indicators and price patterns to determine entries and exits.

All three examples below are production templates from Create Strategy → Strategy Templates, covering a progression from beginner to advanced:

Beginner · Single MA
One MA100 indicator · Long only
Advanced · Turtle breakout
Donchian channel + ADX filter
Advanced · SuperTrend
ATR-adaptive channel · Long and short

💡 Use Load to canvas at the bottom of each strategy card to import its configuration into the strategy editor and start a backtest quickly.

Single moving average strategy

BeginnerTrend followingETH · 4h

Single Moving Average Strategy

The simplest trend-following strategy: go long when the closing price rises above the 100-period moving average, and close the position when it falls below. This long-only strategy does not open short positions and is ideal for learning how to build a workflow.

Core logic
Long entry
Close > MA(100): the price is above its long-term moving average, confirming a bullish trend
Long exit
Close < MA(100): the price falls below the moving average, signaling a trend reversal
No short positions
Leave shortOpen and shortClose empty so the strategy trades only in the long direction
Workflow node configuration

Turtle breakout strategy

AdvancedTrend followingBTC · 4h

Turtle Breakout Strategy

A classic CTA breakout strategy: go long when price breaks above the upper band of the 20-period Donchian channel, and exit when it breaks below the lower band. ADX > 20 filters false breakouts in ranging markets. The strategy is long-only, allocates 90% of capital, sets no fixed take-profit or stop-loss, and exits on a trend-reversal signal.

Core logic
Long entry
Close > the previous 20-period high (upper Donchian band) and ADX > 20
Long exit
Close < the previous 20-period low; the downside breakout closes the long position
Key design
shift(t_max/t_min, 1) excludes the current candle and prevents look-ahead bias
Workflow node configuration

SuperTrend system

AdvancedTrend followingSOL · 1d

SuperTrend System

An ATR-adaptive channel strategy: EMA20 is the center line, with dynamic bands two ATR14 values above and below it. Go long when price breaks above the upper band with ADX > 20, and exit when it falls back below EMA20. The strategy trades in both long and short directions.

Core logic
Long entry
Close > upper band (EMA20 + 2×ATR14), ADX > 20, and price > EMA50
Long exit
Close < the EMA20 center line
Short entry
Close < lower band (EMA20 - 2×ATR14), ADX > 20, and price < EMA50
Short exit
Close > the EMA20 center line
Workflow node configuration
    BeeQuant - AI Quantitative Trading Platform