SPAC Trading Course: Learn the Post-Merger Event Calendar
Learn the curriculum a SPAC trader needs, from sponsor incentives and redemptions to merger cohorts, lockups, dilution, and squeeze risk.
Alphanume Team · August 23, 2026
A SPAC trading course should be organized around a changing capital structure, not around a glossary. The ticker that begins as cash in trust can become an operating company with public shares, founder shares, private placement warrants, public warrants, earnouts, convertible financing, and resale registrations. Each security has different incentives and a different date when it can affect supply.
The post-merger period is where those clocks collide. Redemptions can remove most of the public float just as attention rises, creating a temporary squeeze. Later, an effective resale registration or lockup expiration can release much more supply than the visible float suggested. A useful curriculum teaches the learner to reconstruct that sequence from filings and test cohorts without pretending every de-SPAC follows one path.
Map the parties before the ticker
Start with incentives. Public shareholders can usually redeem around the merger vote, which lets them exit for their share of the trust rather than remain invested. Sponsors hold founder economics that can remain valuable at prices where public investors lose money. PIPE investors and other financing providers may receive securities under negotiated terms. Warrant holders possess option-like exposure with exercise and redemption provisions that differ by deal.
A course should make students draw the capitalization table before and after the merger. Count public shares net of redemptions, sponsor and founder shares, PIPE shares, warrants by class and strike, earnout shares, and any convertible or forward-purchase securities. Fully diluted share count is not the same as freely tradable float, but both matter. Float helps explain short-term price pressure; diluted supply helps frame what can arrive later.
| Clock | Evidence | Research question |
|---|---|---|
| Merger vote and redemption | Vote results and redemption disclosure | How much public float remains? |
| Closing and ticker change | Super 8-K or closing filing | When does the operating company begin trading? |
| Lockup release | Merger agreement and holder agreements | Which blocks become transferable, and under what conditions? |
| Resale registration | S-1 or S-3 plus amendments | Which existing or new shares are being registered? |
| Effectiveness | SEC EFFECT notice and prospectus | When can registered holders legally sell? |
| Warrant or earnout trigger | Security terms and price conditions | What contingent supply or hedging can activate? |
Treat redemption as a float event
The redemption percentage alone is not a trade signal. It changes the denominator. A high-redemption deal may have a very small tradable float, but the magnitude is meaningful only after comparing remaining shares with volume, borrow, option activity, and the supply scheduled behind them. Low float can amplify upward and downward moves, so it describes instability rather than direction.
Record when the redemption result became public. Do not use a final share count to explain prices that occurred before the disclosure. When filings report slightly different counts, retain the document, timestamp, and definition used. Reconciliation is part of the analysis because treasury shares, PIPE closing timing, and multiple share classes can make apparently simple totals disagree.
- Trust and redemption. Establish cash per share, vote mechanics, deadline, and remaining public shares.
- Closing package. Capture ticker, closing date, financing completion, and the new capitalization.
- Transfer restrictions. Read holder-specific lockups and any price-based early release clauses.
- Registered supply. Separate primary issuance from resale shares and wait for effectiveness.
- Contingent supply. Track warrants, earnouts, converts, and price triggers without assuming immediate dilution.
Build a dated supply calendar
For each deal, create one row per event rather than one row per company. Stable fields include the original SPAC identifier, post-merger ticker, CIK, event type, filing and effective timestamps, estimated shares affected, source filing, and a confidence note. This event table becomes the spine that market prices, volume, borrow, and benchmark returns join onto.
The most important distinction is registration versus saleability. A filing can announce possible supply, while an EFFECT notice changes the legal status of registered shares. A lockup may expire on a fixed date or after a price condition. Warrants may be exercisable only after several conditions are met. If the course collapses those states into a single dilution date, it will mislabel both the signal and the return window.
calendar = filings.assign(
tradable_time=filings.apply(first_tradable_time, axis=1),
supply_ratio=filings["shares_affected"] / filings["float_before_event"],
)
study = calendar.merge(prices, on=["ticker", "date"], how="left")
study["abnormal_20d"] = study["return_20d"] - study["benchmark_return_20d"]Test cohorts without erasing the path
Group events by mechanism, not by a broad de-SPAC label. Compare effectiveness events with lockup releases, and split them by supply relative to float, liquidity, redemption level, and time since merger. Use medians beside means because a few collapses or squeezes can dominate a SPAC cohort. Show counts, missing observations, and the full distribution.
Then make the study point in time. Universe membership must include failed and delisted deals. Ticker histories need stable identifiers so a symbol change does not drop the early period. Entry starts after the disclosure was tradable, not at the filing's calendar date by default. Short simulations also need borrow availability and fees, especially in the low-float deals that appear most attractive on a chart.
Design around squeezes and later supply
A small float with high attention can rise violently before later supply arrives. Being directionally right about dilution does not make the path survivable. Cap position size, stress multi-day gaps, treat borrow recall as a forced exit, and avoid using the anticipated supply date as a guarantee that price must converge beforehand. A calendar is a map of possible state changes, not a promise of timing.
The capstone should produce a deal sheet and a cross-deal study. The deal sheet explains one capital structure and every dated supply event. The study tests a consistently defined cohort around one event type. Together they keep the learner from hiding a weak mechanism behind a large sample or mistaking one memorable ticker for a general law.
This syllabus differs from the existing systematic de-SPAC short framework. That article presents a focused research framework for the short side. This course guide begins earlier, with participant incentives and capitalization, and follows the full post-merger event calendar through redemptions, lockups, registered resale supply, warrants, and squeeze risk.
The SPAC machine lesson turns that calendar into a repeatable research workflow. Use the quant trading curriculum hub to connect it with filing, dilution, event-study, and short-mechanics lessons. A good SPAC researcher should be able to answer not only how many shares exist, but which holders can sell which shares on which date, based on what document.