Strategy Type · CTA Trend Following

CTA Trend Following Explained
From the Turtles to Crisis Alpha

2026-06-03·14 min read·Story + Strategy

In 1983, Chicago commodity trading legend Richard Dennis made a bet with his friend William Eckhardt: can trading be taught? Dennis argued, "Give me the system and I can train anyone to be a trader." To prove it, he ran an ad in the Wall Street Journal, picked 23 complete novices with zero trading experience out of thousands of applicants, trained them for two weeks, and handed each one an account of $500K to $2M.

Five years later, these "Turtles" had made Dennis more than $175 million USD. This post covers the CTA (Commodity Trading Advisor) industry, the details of the Turtle Trading experiment, the design logic behind trend following strategies, and why this method from 1983 still works on BTC today.

1. What Is a CTA

CTA = Commodity Trading Advisor. The literal translation is "commodity trading advisor," but the actual business is systematically managing client capital — trading futures, options, commodities, and FX.

US regulatory framework:

  • Regulator: CFTC (Commodity Futures Trading Commission)
  • Since 1984, registration authority has been delegated to the NFA (National Futures Association)
  • All CTAs must register as members of the NFA
  • Exemption: ≤ 15 clients and no public solicitation
How big is the CTA industry
As of the end of 2023, total AUM in the CTA / managed futures industry was approximately $472 billion USD(approximate; the full 2024 number requires BarclayHedge's paid data). The BarclayHedge CTA Index covers about 356 trading programs (2025).

2. Notable CTA Firms

FirmFounderFoundedSignature Trade
WintonDavid Harding19972008 +21% (vs. equities -38%)
Man AHLLueck / Adam / Harding1987One of London's largest quant funds
Campbell & CoKeith Campbell1972One of the oldest CTAs in the industry
Chesapeake CapitalJerry Parker (former Turtle)1988Pure trend following, including equities
DUNN CapitalBill Dunn19741995 +96.7% (yen mega-trend); 40+ year compound annual return > 19%
Jerry Parker's famous line
"Trend following plus nothing — forever" — trend following, nothing added, forever. This is the most-quoted line in the CTA world. Parker has been running the same set of rules for 40+ years and is still going.

3. The Real Story of the Turtle Trading Experiment

The 1983 Bet

Dennis and Eckhardt were old friends from the Chicago Board of Trade (CBOT). Dennis started in the 1970s with $1,600and was a multi-million-dollar trader by 1983 (worth roughly $3M+ in today's money).

The two argued one question: are successful traders born with talent (nature) or can they be trained (nurture)?

  • Dennis: Give me the system and I can train anyone to be a trader
  • Eckhardt: Trading requires natural talent

To prove it, Dennis ran an ad in the Wall Street Journal and out of thousands of applicants selected 23 complete novices with no trading experience. After two weeks of intensive training, he gave each of them a trading account of $500,000 ~ $2,000,000 USD(Dennis's personal capital).

The name "Turtle" came from a joke Dennis made after visiting a turtle farm in Singapore: "I can mass-produce traders the same way they raise turtles here."

Result: $175 Million in 5 Years

Within 5 years, these 23 novices generated over $175 million USD in profit for Dennis. In 1993, Eckhardt publicly admitted he had lost the bet: "I assumed a trader added something that couldn't be encapsulated in a mechanical program. I was proven wrong."

The most successful Turtle was Jerry Parker, who founded Chesapeake Capital in February 1988. 40+ years on he's still running pure trend following and remains a benchmark in the CTA world.

Not all 23 succeeded
Note: some of the 23 were personally fired by Dennis (for breaking the system's rules). Not everyone became a legend — most of them eventually left finance. Individual Turtles' personal return numbers are heavily disputed; the "such-and-such Turtle made 80% annualized" figures you see online are usually unreliable.

4. Core of the Turtle Rules (Applicable to BTC)

The Turtle system is actually two systems: System 1 (short term) + System 2 (long term). Each trader could pick one or run both.

ElementSystem 1 (short term)System 2 (long term)
Entry (long)Break 20-day highBreak 55-day high
Entry (short)Break 20-day lowBreak 55-day low
Exit (long)Break 10-day lowBreak 20-day low
Stop loss2 ATR against entry priceSame as left
Position size1 ATR = 1% account riskSame as left

The Key: Dynamic Position Sizing via ATR

The most important part of the Turtle system isn't the entry signal — it's position sizing:

  • High-volatility markets (large ATR) → smaller position
  • Low-volatility markets (small ATR) → larger position
  • The "risk amount" per trade is always 1% of account equity

In 1983 this was a revolutionary concept. Most people back then used fixed share count / fixed dollar amount orders. Nobody had thought of "dynamically adjusting by volatility."

5. Turtle Rules in Pine Script

Below is a simplified version of System 1 — drop it into BTC and run it:

pine
//@version=5
strategy("Turtle System 1 (Simplified)", overlay=true,
  initial_capital=10000, default_qty_type=strategy.percent_of_equity,
  default_qty_value=10)

// === Parameters ===
entryLength = input.int(20, "Entry Breakout Days")
exitLength = input.int(10, "Exit Breakout Days")
atrLength = input.int(20, "ATR Period")
atrMult = input.float(2.0, "Stop ATR Multiplier")
riskPct = input.float(1.0, "Risk Per Trade %")

// === Indicator ===
entryHigh = ta.highest(high, entryLength)[1]
entryLow = ta.lowest(low, entryLength)[1]
exitHigh = ta.highest(high, exitLength)[1]
exitLow = ta.lowest(low, exitLength)[1]
atr = ta.atr(atrLength)

// === Entry ===
if (close > entryHigh)
    // Position size: 1% account risk / (ATR × 2)
    qty = (strategy.equity * riskPct / 100) / (atr * atrMult)
    strategy.entry("Long", strategy.long, qty=qty)

if (close < entryLow)
    qty = (strategy.equity * riskPct / 100) / (atr * atrMult)
    strategy.entry("Short", strategy.short, qty=qty)

// === Stop loss ===
strategy.exit("LongStop", "Long", stop=strategy.position_avg_price - atr * atrMult)
strategy.exit("ShortStop", "Short", stop=strategy.position_avg_price + atr * atrMult)

// === Exit on trend reversal ===
if (close < exitLow)
    strategy.close("Long")
if (close > exitHigh)
    strategy.close("Short")

// === Visual ===
plot(entryHigh, "20D High", color=color.green)
plot(entryLow, "20D Low", color=color.red)
Before going live, note
This is a simplified teaching version. The original Turtles also had: (1) pyramiding up to 4 Units in the same direction, (2) aggregate limits across correlated markets, (3) N (ATR) recomputed each day using an EMA-style formula. For full implementation, consult the original PDF on turtletrader.com.

6. Crisis Alpha — Why Trend Following Makes Money in a Crisis

In 2008 the S&P 500 dropped -38%, but CTAs on average:

  • Managed Futures Index +19.31%
  • Barclay CTA Index roughly +14%
  • Winton +21%

There's a name for this phenomenon: Crisis Alpha. The term was coined by Kathryn Kaminski after the financial crisis.

Why?

Because a crisis itself is a trend:

  • Stocks drop continuously (sustained trend = trend following profits on shorts)
  • Safe-haven currencies (USD, JPY, CHF) keep appreciating
  • Bonds keep rallying (central bank rate cuts)
  • Commodities keep falling on recession expectations

All four directions show clear trends → trend following systems make money in all four.

Trend following is not a silver bullet
During "Volmageddon" on February 5, 2018, trends suddenly collapsed → CTAs also took big drawdowns. Trend following hates sudden reversals + choppy markets — that's its biggest weakness.

7. Applying CTA Thinking to Crypto

The crypto market is particularly well-suited for trend following:

  • High volatility: BTC's 30-day vol often exceeds 80%, and once a trend starts it can run 100%+
  • 24/7 markets: breakouts aren't interrupted
  • No PDT rule: retail can move in and out freely
  • Clear cycles: halvings and 4-year bull/bear cycles are well-defined

Apply the Turtle 20-day / 55-day breakout to the BTC daily and backtest the past 5 years — the result is usually surprising.

Get started

Ready to ship what you just learned?

Want to actually run a trend following strategy? Write it in Pine → TVSBot auto-routes orders to Binance / OKX / Bybit.

Start free trial

8. Three Key Takeaways

  1. The strategy can be taught; discipline is the hard part. The Turtle experiment proved "a system can be replicated," but after the original rules were made public in 2003, most people still didn't make money — because knowing the rules ≠ being able to execute them.
  2. Position sizing matters more than the entry signal. ATR-based risk parity is the real source of Turtle alpha, not the "20-day breakout" entry rule itself.
  3. The best battlefield for trend following is a crisis. It's boring when equities are calm, but when a black swan hits you'll be glad you have this system. That's the biggest reason to keep it as part of an "all-weather sleeve."