La Niña and the North American heating season

Tested 6 ways. 2 looked convincing alone, none once the number of attempts was counted.

Conclusion: Null

No effect. Of 6 tests, 2 fell below the usual threshold individually — about what chance produces over this many attempts — and none survived correction for the size of the search.

Every test, against the significance threshold

persistence-robust p · left is stronger evidence
00.050.250.51NG=FNG=FCL=FCL=FUNGUNG
Filled markers fall below the 0.05 threshold before multiple-testing correction; hollow markers do not. Correction is applied across the whole batch, so an individual marker clearing the line is not a result on its own.
Tests
6
ticker × horizon
p < 0.05
2
uncorrected
Best q
0.83
BH-FDR
Survived
0
q ≤ 0.10

Method

Hypothesis

La Niña winters skew cold in the US northern tier via a displaced polar jet. Signal sampled Sep–Nov, when the ENSO state is known but the weather is not.

Rule

signal = soi_3m # 3-month mean SOI
prior = +1 # higher SOI -> higher returns
function test(instrument, horizon h):
y = sum(returns[instrument], t+1 .. t+h) # strictly forward
x = signal[t] # known at t
beta, t_stat = OLS(y ~ x) with Newey-West HAC, lag = h + 1
# null: slide x against y by every admissible offset, so
# persistence appears identically under the null
null = [slope(y, roll(x, k)) for k in all offsets]
p = (count(abs(null) >= abs(beta)) + 1) / (len(null) + 1)
return beta, t_stat, p
reject if Benjamini-Hochberg q <= 0.10 across the whole study

Evaluation

Table 1 · Every test in this hypothesis

forward return regressed on the SOI signal
NG=F 3mNG=F 4mCL=F 3mCL=F 4mUNG 3mUNG 4m+1.8-1.8
InstrumentHorizonnβHAC tShift pSign as predicted
NG=F3m78-0.0040-0.800.804no
NG=F4m78-0.0047-0.810.839no
CL=F3m78+0.0062+1.580.036yes
CL=F4m78+0.0087+1.750.018yes
UNG3m57+0.0003+0.070.400yes
UNG4m57+0.0013+0.250.371yes
Shift p is the persistence-robust p-value and is the one that decides. HAC t is shown to demonstrate how far conventional inference overstates the evidence.

Reference

Instruments

last price and one-month change, live from Yahoo Finance
SymbolNotes
CL=FWTI Crude Oil — continuous futures on NY Mercantile, in USD.
NG=FNatural Gas — continuous futures on NY Mercantile, in USD.
UNGUnited States Natural Gas Fund — exchange-traded fund listed on NYSEArca, in USD.

Sample

1970–2026 monthly

Sources

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
02TestedNull6 tests; 2 below p=0.05, none surviving FDR
algorithmic-trading-anthology-july-2026-la-nina-and-the-north-american-heating-season | d/rksci