← Blog/blog/signal-correlation-pnl-mismatch

Orthogonal signals can still make the same bet

A quantitative researcher often rejects a new stock-selection signal because it looks too correlated with one already in the library. That sounds like diversification discipline. But the correlation being measured is usually across stocks on each date, while profit-and-loss correlation is measured across dates after every cross-section has collapsed to one payoff.

Nunes shows these are not noisy estimates of the same object. They are inner products over different axes. Without extra assumptions, neither one bounds or even orders the other.

01

One date has a longitudinal and a transverse direction

The information coefficient (IC) is the cross-sectional Pearson correlation between a signal's scores and the returns realized next. After demeaning and scaling the signal to Euclidean norm one, its projection onto the realized return direction is exactly that IC. The remainder is transverse: it changes how signals resemble one another without changing that signal's same-date payoff.

Therefore signal similarity equals the product of the two realized ICs plus their transverse inner product. Normalizing the transverse term gives the ordinary partial correlation between the two signals after controlling for realized returns.

transverse norm²
Core-computed share of a unit signal’s squared norm left transverse to realized returns. At IC 0.03, 99.91% is still outside the payoff direction.
02

Profit keeps only dispersion-weighted IC

Return dispersion is the cross-sectional magnitude of that date's demeaned returns. For the normalized signal, realized PnL is simply dispersion times IC. PnL correlation then centers and normalizes those two time series. The transverse component has disappeared; variable dispersion and Pearson centering have entered.

def diagnose(ic1, ic2, dispersion, similarity):
    mean = lambda xs: sum(xs) / len(xs)
    products = [x * y for x, y in zip(ic1, ic2)]
    pnl1 = [a * x for a, x in zip(dispersion, ic1)]
    pnl2 = [a * y for a, y in zip(dispersion, ic2)]
    transverse = mean([s - p for s, p in zip(similarity, products)])
    pnl_corr = pearson(pnl1, pnl2)
    return mean(similarity), mean(products), transverse, pnl_corr

The site runs the TypeScript implementation above. The Python and C++ tabs are line-for-line translations of the same four diagnostics.

03

Hold signal correlation fixed; sweep PnL correlation

The non-identifiability theorem can be made concrete in four dates. Two mean-zero IC series are built with any requested temporal correlation. Their transverse angle is then chosen date by date so their signal similarity stays exactly 0.4. Constant dispersion makes PnL correlation equal the IC-series correlation.

signal correlationPnL correlation
Core-computed, seed-free construction. Every pair has signal correlation 0.4 while PnL correlation spans −0.9 to 0.9. This illustrates the theorem; it is not market data.
04

The paper’s synthetic library exposes the mismatch

The paper generates 12 signals over 1,000 dates and 500 assets with seed 20260906. Signals share one of three transverse feature families, while their IC paths load differently on a common factor. That separation is imposed deliberately to isolate the mechanism.

Paper diagnosticSimulated value
Mean IC range0.0146 to 0.0277
Rank corr: signal corr vs PnL corr−0.070
Rank corr: IC cross-moment vs PnL corr0.974
Mean raw span R²0.0334
Rank-only null mean0.0240
Mean adjusted span R²0.0096
Paper-reported diagnostics across all 66 signal pairs at IC innovation scale 0.045.
PairSignal corrIC cross-momentTransversePnL corr
3–120.4766−0.000160.4767−0.405
10–11−0.00110.00115−0.00220.427
2–110.2091−0.000330.2095−0.539
11–12−0.00020.00168−0.00190.616
Selected paper-reported pairs. Similar-looking signals can diversify PnL, and dissimilar-looking signals can share it.
Paper-reported selected pairs, plotted on one signed scale. The direction and magnitude can disagree sharply.
05

The raw span score also rewards library size

A second quiet trap appears when signals are combined. The best ex post squared correlation between realized returns and a rank-K signal span is an R². Even an uninformative isotropic span has expected R² equal to K/(d−1). With 12 signals and 500 assets, that mechanical baseline is 0.0240. The paper's raw 0.0334 becomes only 0.0096 after null adjustment.

IC innovation sdSignal corr rankIC moment rankMean R²Adjusted R²
0.012−0.1650.3880.0055−0.0190
0.025−0.1600.8770.0128−0.0115
0.045−0.0700.9740.03340.0096
0.0700.1500.9890.07290.0501
Paper-reported sensitivity study. The 0.045 row matches the natural 500-asset IC noise scale.
06

The scope conditions are the real checklist

BoundaryWhat changes outside it
Same traded vectorConstraints, costs, or a risk optimizer add a transfer channel.
Pearson ICRank IC does not satisfy PnL = dispersion × IC unless ranks are traded.
Forward returns knownThe decomposition is an ex post diagnostic, not a deployable signal.
Independent synthetic geometryThe paper imposes feature-family/IC independence; real libraries must test it.
Conditions stated by the paper and consequences for applied research.

The sharpest buried caveat is the ex post status. The same future-return direction defines IC, transverse geometry, and the optimal span fit. Those quantities are excellent forensic diagnostics, but using the raw R² or its optimizing weights as a library score leaks the answer into the feature-selection problem.

07

What to probe next

  • Compute signal, IC-moment, transverse, and PnL matrices side by side.
  • Repeat them at every forward-return horizon; the geometry is horizon-specific.
  • Use block bootstrap or HAC inference for overlapping returns and persistent signals.
  • Control multiplicity: 50 signals already create 1,225 pairwise comparisons.
  • Estimate signed, regularized combination rules strictly out of sample.

The linear-regression page provides the projection geometry underneath IC and partial correlation. The lesson also echoes bagging: useful diversity concerns the dependence of errors—or here, realized payoffs—not merely the resemblance of inputs.

References

  1. Marc Nunes (2026). Signal Correlation, IC, and PnL Dependence. arXiv research note, arXiv:2609.09588
  2. Edward Qian and Ronald Hua (2004). Active Risk and Information Ratio. Journal of Investment Management 2(3)
  3. Eric H. Sorensen, Edward Qian, Ronald Schoen, and Ronald Hua (2004). Multiple Alpha Sources and Active Management. Journal of Portfolio Management 30(2)