Generate Reproducible & Live HTML and PDF Conference Posters Using RMarkdown

Brent Thorne

1 ACCT3112, The University of Hong Kong

Introduction

The Efficient Market Hypothesis (EMH), a pillar of financial theory, asserts that security prices instantaneously reflect all publicly available information, rendering persistent abnormal returns unattainable through historical analysis. Yet this assumption faces a critical stress test in the actions of corporate insiders—executives and directors whose trades are mandated for disclosure but rooted in privileged access to material non-public information. By analyzing the Thomson Reuters Insiders Data Feed (2010–2023), augmented with CRSP market returns, this study interrogates whether insider transactions contain predictive signals that systematically defy semi-strong form efficiency.

Insider trading provides a uniquely potent lens for testing EMH. First, insiders’ legal obligation to disclose transactions under Section 16 of the Securities Exchange Act creates a structured dataset with precise event dates (e.g., transaction vs. filing lags) and quantifiable metrics, filtered through Thomson’s proprietary cleanse indicators to isolate high-confidence records. Second, the hierarchical nature of insider roles—from CEOs to mid-level officers—allows us to test whether informational advantages correlate with organizational seniority. Third, the dataset’s granularity, including split-adjusted prices and ownership types (direct vs. indirect), enables robust controls for confounding factors like survivorship bias or estate-related noise.

Our analysis focuses on three EMH conflict points: (1) whether cumulative abnormal returns (CAR) around insider transactions exceed chance expectations, (2) whether post-disclosure price drifts persist beyond regulatory filing dates, and (3) whether returns vary predictably with insider hierarchy and trade characteristics. By integrating cleansed transaction data (e.g., H/R-coded records) with CRSP’s factor models, we isolate alpha specific to insider activity rather than broader market or style effects.

If significant abnormal returns emerge—particularly among high-confidence CEO/CFO trades—this would challenge the semi-strong EMH by demonstrating that markets fail to fully price insider intent, even after disclosures. Conversely, null findings would reinforce EMH’s resilience in an era of increasing regulatory transparency. Beyond theoretical implications, our results carry practical stakes for policymakers evaluating disclosure latency rules and enforcement prioritization.

The following sections detail our methodology, beginning with data alignment between Thomson Reuters and CRSP, followed by event study results, robustness checks, and a discussion of regulatory ramifications.

Data

The analysis integrates two primary datasets to examine insider trading behavior and its market impact: Thomson Reuters Insider Data and CRSP (Center for Research in Security Prices) stock market data, both spanning 2015 to 2024.

Thomson Reuters Insider Data This dataset captures insider transactions reported to the SEC through Forms 3, 4, 5, and 144. Form 4 filings—mandatory for reporting trades by corporate officers, directors, and major shareholders—form the core of the analysis.

CRSP Data CRSP provides daily stock market data, essential for calculating returns and benchmarking insider trades

The CUSIP acts as the linchpin, merging insider trades (Thomson) with market data (CRSP). For each insider transaction on TRANDATE, CRSP’s daily returns are aligned to calculate abnormal returns over 20-, 60-, and 120-day windows. Only CRSP-listed firms with non-missing returns are included, and survivorship bias is mitigated by retaining delisted firms through 2024.

This structured integration ensures robust analysis of how insiders transactions correlate with short- and medium-term stock performance, while Thomson’s cleansing process enhances data validity.

  1. Easy to use reproducible poster design.
  2. Integration with R Markdown.
  3. Easy transition from posterdown to pagedown report or manuscript documents (Xie et al. 2025).

Methods

This package uses the same workflow approach as the R Markdown you know and love. Basically it goes from RMarkdown > Knitr > Markdown > Pandoc > HTML/CSS > PDF. You can even use the bibliography the same way (Thorne 2025).

Results

Usually you want to have a nice table displaying some important results that you have calculated. In posterdown this is as easy as using the kable table formatting you are probably use to as per typical R Markdown formatting.

You can reference tables like so: Table 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam placerat augue at velit tincidunt semper. Donec elementum porta posuere. Nullam interdum, odio at tincidunt feugiat, turpis nisi blandit eros, eu posuere risus felis non quam. Nam eget lorem odio. Duis et aliquet orci. Phasellus nec viverra est.

Table 1: Table caption.
Sepal.Length Sepal.Width Petal.Length Petal.Width
5.1 3.5 1.4 0.2
4.9 3.0 1.4 0.2
4.7 3.2 1.3 0.2
4.6 3.1 1.5 0.2
5.0 3.6 1.4 0.2
5.4 3.9 1.7 0.4
4.6 3.4 1.4 0.3
5.0 3.4 1.5 0.2
4.4 2.9 1.4 0.2
4.9 3.1 1.5 0.1

Or with figures: Figure 1, or Figure 2.

Great figure!

Figure 1: Great figure!

data <- iris

plot(x = data$Sepal.Length, 
     y = data$Sepal.Width, 
     col = data$Species,
     pch = 19, 
     xlab = "Sepal Length (cm)",
     ylab = "Sepal Width (cm)")
Amazing, right?!

Figure 2: Amazing, right?!

Next Steps

Aliquam sed faucibus risus, quis efficitur erat. Vestibulum semper mauris quis tempus eleifend. Aliquam sagittis dictum ipsum, quis viverra ligula eleifend ut. Curabitur sagittis vitae arcu eget faucibus. In non elementum felis. Duis et aliquam nunc. Nunc pulvinar sapien nunc, vel pretium nisi efficitur in. Fusce fringilla maximus leo et maximus. Fusce at ligula laoreet, iaculis mi at, auctor odio. Praesent sed elementum justo. Aenean consectetur risus rhoncus tincidunt efficitur. Praesent dictum mauris at diam maximus maximus (Thorne 2025).

Conclusion

Try posterdown out! Hopefully you like it!

References

Thorne, Brent. 2025. Posterdown: Generate PDF Conference Posters Using r Markdown. https://github.com/brentthorne/posterdown.
Xie, Yihui, Romain Lesur, Brent Thorne, and Xianying Tan. 2025. Pagedown: Paginate the HTML Output of r Markdown with CSS for Print. https://github.com/rstudio/pagedown.