Data collected for fiscal quarters ending within the reporting period. Companies are matched by ticker symbol across time periods.
Stock price percentage change following earnings announcement (typically measured as close-to-close or intraday swing).
The following table shows individual company data used in calculations. Total records: 6
| Symbol | Company | Report Date | Revenue | Rev Growth % | EPS | EPS Est. | EPS Growth % | Surprise | Reaction % |
|---|---|---|---|---|---|---|---|---|---|
| SNX | TD SYNNEX Corporation | Mar 31, 2026 | $17.16B | N/A | $4.05 | $3.29 | N/A | +$0.76 | +4.6% |
| ADBE | Adobe Inc | Mar 12, 2026 | $6.40B | N/A | $6.06 | $5.87 | N/A | +$0.19 | +3.3% |
| FEIM | Frequency Electronics Inc | Mar 11, 2026 | $0.02B | -1.4% | $0.16 | $0.31 | -10.8% | $-0.14 | +5.1% |
| DOMO | Domo Inc | Mar 10, 2026 | $0.08B | N/A | $-0.19 | $-0.03 | N/A | $-0.16 | +6.5% |
| KEYS | Keysight Technologies Inc | Feb 23, 2026 | N/A | N/A | $1.62 | $2.00 | N/A | $-0.38 | +2.6% |
| STX | Seagate Technology Holdings plc | Jan 27, 2026 | $2.83B | N/A | $3.11 | $2.78 | N/A | +$0.33 | +5.2% |
SELECT
e.symbol,
e.revenue as current_revenue,
e.eps as current_eps,
-- Previous quarter (flexible 2-5 month lookback)
(SELECT revenue FROM earningscalendar
WHERE symbol = e.symbol
AND fiscalDateEnding < e.fiscalDateEnding
AND fiscalDateEnding >= DATE_SUB(e.fiscalDateEnding, INTERVAL 5 MONTH)
ORDER BY fiscalDateEnding DESC LIMIT 1) as prev_quarter_revenue,
-- Previous year (11-14 month lookback)
(SELECT revenue FROM earningscalendar
WHERE symbol = e.symbol
AND fiscalDateEnding BETWEEN DATE_SUB(e.fiscalDateEnding, INTERVAL 14 MONTH)
AND DATE_SUB(e.fiscalDateEnding, INTERVAL 11 MONTH)
ORDER BY ABS(DATEDIFF(fiscalDateEnding, DATE_SUB(e.fiscalDateEnding, INTERVAL 1 YEAR)))
LIMIT 1) as prev_year_revenue
FROM earningscalendar e
JOIN ticker t ON e.symbol = t.ticker
WHERE t.sector = 'Technology'
AND e.fiscalDateEnding IS NOT NULL
AND e.revenue > 1000000 -- Minimum revenue threshold