Single-event test statistics assess whether the abnormal return for one specific firm is significantly different from zero. These tests use the firm’s own estimation-window residuals to form the standard error.
Overview
Test
R Class
Null Hypothesis
Distribution
Best For
AR t-test
ARTTest
\(H_0: AR_{i,t} = 0\)
\(t_{M-K}\)
Daily impact at each event time
CAR t-test
CARTTest
\(H_0: CAR_i = 0\)
\(t_{M-K}\)
Total impact over event window
BHAR t-test
BHARTTest
\(H_0: BHAR_i = 0\)
\(t_{M-K}\)
Long-horizon compounded returns
All tests share the same estimation-window standard deviation:
The denominator scales by \(\sqrt{L}\) (event window length) because the variance of the sum grows linearly with the number of independent observations.
The key difference from CAR: compounding captures the actual investor experience over long horizons, while summing AR underestimates cumulative returns due to the missing cross-product terms.
# Use BHAR t-test for long-horizon studiesps <- ParameterSet$new(single_event_statistics = SingleEventStatisticsSet$new(tests =list(BHARTTest$new()) ))
Pros
Cons
Captures compounding over long horizons
Not appropriate for short windows
Reflects actual investor experience
Standard errors grow with horizon
Better for IPO / M&A long-run studies
Sensitive to rebalancing assumptions
Permutation Test
When residuals violate normality, permutation tests provide exact p-values without distributional assumptions. The idea: if the event has no effect, then the event-window AR should look no different from estimation-window AR.
Algorithm:
Pool all abnormal returns from the estimation window (\(m\) observations) and event window (\(n\) observations): \(\mathbf{X} = \{X_1, \ldots, X_{m+n}\}\)
Compute the test statistic \(T\) (e.g., AR t-test or CAR t-test) on the original data
Randomly permute \(\mathbf{X}\) without replacement. Recompute \(T^*\) on the permuted data
Repeat \(B\) times (e.g., \(B = 10{,}000\))
The p-value is the fraction of permutations where \(T^*\) exceeds \(T\):
When to use permutation tests. Use when the Shapiro-Wilk test rejects normality (see Diagnostics), or when the estimation window is short (< 60 days) and asymptotic approximations are unreliable.