Material Event Search
Screening for Non-Operating Investment Losses via Material Event Filings
When markets experience sharp declines, some companies — especially those with large portfolios of marketable securities — face significant non-operating losses. Earnings reports may look fine on the surface, but hidden investment losses can wipe out operating profits.
In many markets, companies are required to file material event disclosures when they dispose of securities (similar to SEC 8-K filings or EDGAR material event reports in the US). These filings often reveal losses before the quarterly earnings report is published, giving informed investors an early warning signal.
FinLab's database includes historical material event announcement data, allowing you to search for companies that disclosed securities disposal losses.
Searching Announcements with Pandas contains
Use Pandas string matching to find announcements whose title and content match specific keywords:
from finlab import data
info = data.get('important_info_announcement')
report = info[
(info.index > '2022-04')
& (info['title'].str.contains('disposal'))
& (info['info'].str.contains('loss'))
]
Adapting to Your Market
The dataset name and keywords above are specific to the Taiwan stock market (TWSE/TPEx). For US markets, consider using SEC EDGAR full-text search for 8-K filings with keywords like "disposition of assets" or "impairment loss." The analytical approach — screening for non-operating losses before earnings — is universal.
Why This Matters
Companies with weak core business fundamentals that dabble in short-term securities trading can suffer outsized losses during market downturns. Key red flags include:
- Securities investments as a high percentage of equity — amplifies portfolio losses relative to company size
- Frequent disposal announcements — signals active and potentially risky trading behavior
- Tourism, hospitality, and other cyclically weak sectors — companies in struggling industries may chase investment returns to compensate for poor operating performance
Turning This into an Event-Driven Strategy
Market participants often overlook material event filings for small- and mid-cap stocks. The information asymmetry creates opportunities:
- Avoiding blow-ups: Screen out companies with recent disposal losses before earnings season
- Catching hidden gains: Some filings reveal gains from asset disposals that haven't yet been reflected in the stock price
This approach can be systematized into an event-driven strategy — monitor material event filings, flag companies with significant non-operating gains or losses, and position accordingly before the quarterly earnings report confirms what the filing already revealed.