Long grains outright when La Nina is established

Buy wheat, corn and soybeans whenever La Niña is established, and hold nothing otherwise. Nearly all of the twenty-year gain arrived in two episodes: 2010 and 2021.

Conclusion: Failed

Failed: the 95% range spans zero and 108.4% of profit arrived in five months. Indicative performance of 2.9% a year at 10.7% volatility, return for risk taken 0.27 (95% range (0.10) to 0.70). Exposure was held in 49 of 242 months.

Figure 1 · Growth of $1

2006–2026 · net of 15bp round-trip costs
What one dollar became, after costs: $1.81 by 2026. Shown against S&P 500, rebased to the same starting dollar.
Return for risk
0.27
range (0.10) to 0.70
Ann. return
2.9%
volatility 10.7%
Max drawdown
37.2%
over 242 months
Beats the search
3.5%
chance, after correction

Method

Hypothesis

The inverted prior from the deep study, in its simplest tradeable form: La Nina droughts the Americas, which matter more to the global grain balance than Australia.

Rule

UNIVERSE = [ZW=F ZC=F ZS=F ZM=F ZR=F KE=F]
TRIGGER = +1.0 standard deviations
function positions(bar):
z = zscore(feature(soi_3m), expanding, at least 120 months)
if z <= TRIGGER:
return {} # only while La Nina is established
return equal_risk(UNIVERSE, bar)
# ── execution ────────────────────────────────────────────────────────
COST_PER_TRADE = 15 bps of the notional that changes hands
function on_bar(bar, book):
if not bar.is_month_end:
return # decisions are made monthly only
target = positions(bar) # the rule above
target = scale_to_gross(target, 1.0)
rebalance(book, target, bar)
function scale_to_gross(w, limit):
gross = sum(abs(w)) # total capital at work
if gross == 0:
return w # flat is a valid target
return w * limit / gross # leverage fixed, never implicit
function rebalance(book, target, bar):
for symbol in union(book.symbols, target.symbols):
delta = target[symbol] - book.weight(symbol)
if delta > 0:
buy(symbol, delta, fill = next_bar.close)
else if delta < 0:
sell(symbol, -delta, fill = next_bar.close)
book.charge(COST_PER_TRADE * abs(delta))
# Orders are filled at the next month's close, never the one the decision
# was made on. There is no stop_loss(), take_profit(), limit order or
# position cap: a holding changes only when positions() returns a
# different target at the next month end.

Evaluation

Table 1 · Performance

2006-05 – 2026-06 · 242 months, 49 invested
MeasureValue
Annualised return2.9%
Annualised volatility10.7%
Return for risk taken0.27
95% range(0.10) to 0.70
t-statistic1.23
Maximum drawdown37.2%
Hit rate57.1%
Annual turnover1.13×
Return skew0.37
Return kurtosis15.42
The range is measured by resampling the history in blocks, so runs of good and bad months stay intact.

Table 2 · Robustness

DiagnosticValueReads asBadOkayYayHmm
Design half (pre-2015)0.28return for risk≤ 00 – 0.40≥ 0.40
Holdout half (2015+)0.32return for risk≤ 00 – 0.40≥ 0.40
Top-5-month share of profit108.4%how much rode on a few months — lower is better≥ 40%25 – 40%< 25%
Top-2-year share of profit86.0%concentration
Distinct trading episodes11how many independent runs this really is< 5050 – 100≥ 100
Chance the edge is real89.1%non-normality corrected
Chance it beats the whole search3.5%chance of beating the whole search by luck
bad/ok boundary is the pre-registered criterion · ok/good is a margin above it, not a criterion · blank where none was registered
The last row asks whether the result would stand out from the hundred-odd ideas tried here, rather than being judged alone.

Table 3 · Net return by calendar year

after costs
200620072008200920102011201220132014201520162017201820192020202120222023202420252026+27%-27%
YearNet return
20067.5%
20070.0%
2008(0.9%)
2009(8.5%)
201027.5%
20113.2%
20127.1%
20130.0%
20140.0%
20150.0%
20160.0%
2017(1.2%)
2018(0.1%)
20190.0%
20200.0%
202123.5%
20224.3%
2023(4.0%)
20240.0%
20250.0%
20260.8%

Table 4 · Concentration detail

MeasureValue
Best years2010:+27%, 2021:+23%, 2006:+8%
Worst year2009:-8%

Reference

Instruments

last price and one-month change, live from Yahoo Finance
SymbolNotes
ZW=FChicago SRW Wheat — continuous futures on CBOT, quoted in US cents.
ZC=FCorn — continuous futures on CBOT, quoted in US cents.
ZS=FSoybeans — continuous futures on CBOT, quoted in US cents.
ZM=FSoybean Meal — continuous futures on CBOT, in USD.
ZR=FRough Rice — continuous futures on CBOT, in USD.
KE=FKC HRW Wheat — continuous futures on CBOT, quoted in US cents.

Sample

2006-05 – 2026-06 · 242 months

Sources

NOAA Physical Sciences Laboratory. Climate indices. ONI, Niño 3.4, MEI v2, DMI, PDO, AMO, TNA, QBO, solar flux. psl.noaa.gov/data/climateindices/list
Queensland Department of Agriculture and Fisheries. Southern Oscillation Index. The Long Paddock. Monthly, 1876–. www.longpaddock.qld.gov.au/soi/soi-data-files
Yahoo Finance. Historical market prices. Adjusted close, month-end. Retrieved with yfinance. finance.yahoo.com

Revision history

RevStageStatusChange
01DraftDirection and criteria fixed before the experiment ran
02TestedFailedBenchmark, not scored against the criteria
algorithmic-trading-anthology-july-2026-s5-lanina-grain-long | d/rksci