Corporate-Action Blindness

Goal Market Data Freshness Frequency Common Category Financial Services Published View source on GitHub ↗

Issue: Agent Fails to Adjust Prices, Positions, or Historical Series for Splits, Dividends, Mergers, or Spin-Offs

Frequency: Common

Symptoms

  • Sudden, large “price drop” flagged as an anomaly when it is actually an unadjusted stock split or special dividend
  • Historical return calculations show impossible jumps across a split or merger date
  • Position quantity not updated after a spin-off, leaving the client’s reported holdings incomplete
  • Backtests trained on unadjusted price series produce systematically biased signals around action dates

Root Cause Corporate actions (splits, dividends, mergers, spin-offs, ticker changes) require explicit adjustment logic applied to both historical series and live positions. Many data pipelines apply adjustments asynchronously or incompletely, and agents consuming “raw” feeds without action-aware adjustment treat the resulting discontinuities as genuine price moves or, worse, silently misstate position values.

Example

Scenario: Company executes a 4-for-1 stock split overnight
Agent's data feed: Price series not yet back-adjusted
Agent observes: Price drops from $400 to $100 "overnight"
Agent action: Flags as -75% crash, recommends emergency portfolio review
Reality: No change in position value; pure stock-split artifact
Impact: False alarm triggers unnecessary client outreach and erodes trust in the system

Key Statistics

  • Unadjusted corporate-action artifacts are a recurring cause of false-positive anomaly alerts in market-data-driven agents
  • Spin-off and merger events that are not fully reflected in position records cause position-value misstatements until manually reconciled, typically within 1-5 trading days in affected pipelines
  • Backtests on unadjusted historical data around action dates show spurious volatility spikes that bias signal-generation models

Mitigation Strategies

Prevention

  1. Implement multi-layer entity resolution with hierarchy validation: Maintain a master entity reference database with parent-subsidiary relationships, guaranteed updater, transaction account mappings. Use persistent unique identifiers (LEI, ISIN, internal ID) instead of name-based matching. On every exposure lookup, resolve through hierarchy graph and validate against current regulatory filings. Root cause: Ensures exposure always attributed to correct legal entity accounting for corporate structure changes.

  2. Establish regulatory compliance gates with before/after checks: Before any trading decision or exposure update, verify: (1) Counterparty regulatory status (sanctions check, credit rating current), (2) Position size vs. single-name concentration limit at ultimate parent level, (3) Exposure vs. concentration risk limits across correlated counterparties. Abort if any gate fails. Root cause: Prevents trades that violate compliance rules by checking compliance before execution.

  3. Implement market data freshness validation with latency bounds: Every market data feed includes timestamp. Before using data for decisions, verify: (1) Timestamp within acceptable age (e.g., <30s for prices, <1d for ratings), (2) Data not marked as stale by upstream provider, (3) Cross-feed consistency check (e.g., bid-ask spread reasonable). Reject stale/inconsistent data with alert. Root cause: Prevents decisions based on outdated market information.

Detection & Response

  1. Exposure aggregation audit with parent-level rollup: Daily batch job re-computes all exposure aggregations at ultimate parent level from scratch (not incremental). Compares against operational system. Flags: (1) Missing hierarchy mappings, (2) Exposure misattributed to legal entity instead of parent, (3) Concentration violations only visible at parent level. Reports with detailed reconciliation.

  2. Regulatory compliance violation detection: Monitor all executed trades against post-hoc compliance checks. Flag violations: (1) Counterparty now in breach of sanctions/credit triggers after trade, (2) Concentration limit exceeded at parent level, (3) Position size violates regulatory limits for entity type. Generate audit trail for each violation with decision data.

Architecture Patterns

  1. Corporate Hierarchy Graph Service: Maintains versioned parent-subsidiary-guarantee relationships. API: resolve_to_parent(entity_id, as_of_date) -> parent_id + risk_correlation. Fetches from regulatory filings (daily), M&A feeds (real-time), credit data (weekly). Triggers recomputation on family structure changes. Serves through cache with fallback to DB.

  2. Pre-Trade Compliance Engine: Rule engine evaluates every proposed trade against: sanctions checks, concentration limits (computed at parent + correlated entities), regulatory position size limits, data freshness gates. Blocks non-compliant trades with detailed audit log of which rule failed why.

  3. Market Data Freshness Orchestrator: Aggregates feeds from multiple market data providers with explicit ‘as of’ timestamps. Computes data freshness for each field (bid, ask, last_traded, credit_spread). Feeds below threshold age marked as ‘stale’. Risk system rejects decisions using stale feeds with incident log.

Key Metrics

MetricTargetAlert ThresholdMeasurement Method
Parent-Level Aggregation Accuracy>99.5%<99%Percentage of counterparty exposure correctly rolled up to ultimate parent vs. attributed to legal entity only
Hierarchy Graph Staleness (Post-Restructuring)<7 days>14 daysMax time between corporate restructuring announcement and hierarchy graph update for known counterparties
Compliance Gate Pass Rate99.9%<99.5%Percentage of proposed trades passing all pre-trade compliance checks
Market Data Freshness Compliance>98%<95%Percentage of market data points within acceptable age bounds before use in decisions
Post-Trade Violation Detection Rate>95%<90%Percentage of actual compliance violations caught by post-trade audit vs. total violations

Alerts & Escalation

AlertConditionSeverityResponse
Parent-Level Concentration BreachUltimate parent exposure exceeds concentration limit while legal-entity-level exposures individually within limitsCRITICALHalt new trades to counterparty family; escalate to risk committee; generate audit report
Stale Hierarchy on RestructuringKnown M&A/spin-off event affecting held counterparty with no hierarchy update >7 daysHIGHPage data team; trigger priority hierarchy refresh; mark affected counterparties for manual review
Stale Market Data in DecisionMarket data >30s old used for pricing decision, or >1d old used for risk assessmentHIGHReject decision; alert trader; log incident with full decision trace for audit

References