Network Analysis for AML Investigations
Key Insights
- Graph methods for financial crime: entity resolution, community detection, and link prediction on transaction graphs.
From transactions to graphs
Each transfer is an edge (sender → receiver, amount, timestamp). Aggregated over time the graph exposes structure no single account review shows: mule clusters, layering chains, and common beneficiaries across unrelated account holders. The shift in perspective is the point: transaction monitoring optimised per account cannot see patterns that only exist across accounts — a layering chain is invisible inside any single customer's transaction history.
Techniques that matter
- Entity resolution — dedupe identifiers (names, addresses, devices) before graph construction.
- Community detection — label-propagation / Louvain find tightly-knit groups consistent with money mules.
- Centrality + motif counts — high betweenness accounts that fan out funds quickly are classic layering signatures.
Entity resolution quality gates everything downstream: two accounts that share a phone number are one entity for graph purposes, and failing to resolve them hides the very links the analysis is meant to find. Motif counts — directed patterns like fan-in, fan-out, and cycles — are the most interpretable features and translate directly into typology language investigators already use.
Operationalise with risk scoring
Convert graph features (community density, path lengths to flagged accounts, fan-out ratio) into numeric scores consumed by the transaction-monitoring engine, then route to investigation worklists. Re-score periodically: graphs drift as new accounts join and typologies evolve. Graph scores should augment, not replace, rule-based alerts: pair a graph anomaly with a narrative that names the accounts and links involved, or investigators will treat the alert as an unexplained curiosity.
Scale and privacy constraints
- Compute at ingestion with bounded windows — full-graph recompute does not scale; incremental updates do.
- Anchor visualisation on suspected clusters, not the whole network, to keep investigations tractable.
- Handle personal data minimisation early — graph analytics compound identifiers, and retention rules must cover derived graph artefacts.
References
Article Metadata
Bloom Taxonomy Questions
What three graph techniques are most relevant to AML investigations?
Why must entity resolution be performed before graph construction?
Given a month of transfer logs, describe how you would score accounts for fan-out (layering) risk using graph features.
Further Reading
FATF
Financial Action Task Force — global AML/CFT standards and grey/black lists
FinCEN Press
FinCEN press releases — rulemakings, advisories, enforcement orders
ACAMS
Association of Certified Anti-Money Laundering Specialists — training, research, typologies
FinCEN
US Financial Crimes Enforcement Network — SAR filings, advisories, BSA guidance
OFAC
US Office of Foreign Assets Control — sanctions lists, enforcement actions
AMLA
EU Anti-Money Laundering Authority — rulebook, RTS, direct supervision
Feynman Concept Cards
Master each concept: read the ELI5, explore analogies, work examples, and teach it back.
Transaction Monitoring is a concept in transaction monitoring. In simple terms, Transaction Monitoring covers transaction monitoring within Compliance. This compliance concept addresses key topics in the transaction monitoring within compliance domain. Also known as: TM, transact
Analogy
Example
Find Gaps
Explain Transaction Monitoring as if teaching a colleague who is new to transaction monitoring. Cover: what it is, how it works, and why it matters.
Create
Create a code that demonstrates Transaction Monitoring in a real-world transaction monitoring scenario. Walk through your design decisions.
Show solution
A code for Transaction Monitoring should include: 1. The core components of transaction monitoring 2. How they interact 3. Expected outcomes or outputs
Network Analysis for AML is a concept in advanced techniques. In simple terms, Network Analysis for AML covers advanced techniques in Compliance. This compliance concept addresses key topics in the advanced techniques in compliance domain. Also known as: graph analytics, network
Analogy
Example
Find Gaps
Explain Network Analysis for AML as if teaching a colleague who is new to advanced techniques. Cover: what it is, how it works, and why it matters.
Create
Create a diagram that demonstrates Network Analysis for AML in a real-world advanced techniques scenario. Walk through your design decisions.
Show solution
A diagram for Network Analysis for AML should include: 1. The core components of network analysis 2. How they interact 3. Expected outcomes or outputs