Insider Trading Signals — Detect Patterns That Matter
Not all insider trades are equal. Revorian automatically detects high-signal patterns like cluster buying (multiple insiders buying at the same company) and unusually large transactions.
Signal Types
Cluster Buying/Selling
3 or more insiders at the same company trading in the same direction within a short window. One of the strongest directional indicators in insider trading analysis.
Unusual Size
Transactions that significantly exceed the insider's historical trading pattern. A CEO who normally buys $50K worth of stock suddenly buying $2M is notable.
CEO/CFO Trades
Transactions by the most senior executives, who typically have the deepest insight into company health.
Sector Sentiment
Aggregate insider buy/sell ratios across entire sectors. When insiders across an industry are all buying, it can signal sector-wide bullishness.
Get Signals — Free
# Latest signals (cluster buys, unusual activity) curl https://api.revorian.com/v1/feed/signals # Today's biggest trades curl https://api.revorian.com/v1/feed/top-today
Detailed Signal Analysis (Authenticated)
# Active cluster buy signals curl -H "Authorization: Bearer rev_live_sk_..." \ "https://api.revorian.com/v1/signals/clusters?direction=buy" # Cluster sell signals curl -H "Authorization: Bearer rev_live_sk_..." \ "https://api.revorian.com/v1/signals/clusters?direction=sell" # Unusual activity curl -H "Authorization: Bearer rev_live_sk_..." \ "https://api.revorian.com/v1/signals/unusual" # Sector sentiment curl -H "Authorization: Bearer rev_live_sk_..." \ "https://api.revorian.com/v1/stats/sector-sentiment" # Top insider purchases this week curl -H "Authorization: Bearer rev_live_sk_..." \ "https://api.revorian.com/v1/stats/top-buys?days=7"
Example: Cluster Buy Signal
{
"signal": "CLUSTER BUY",
"ticker": "XYZ",
"company": "Example Corp",
"insiders": 4,
"totalValue": 3200000,
"window": "5 days",
"transactions": [
{ "insider": "John Smith (CEO)", "value": 1500000, "type": "P" },
{ "insider": "Jane Doe (CFO)", "value": 800000, "type": "P" },
{ "insider": "Bob Wilson (VP)", "value": 500000, "type": "P" },
{ "insider": "Alice Chen (Director)", "value": 400000, "type": "P" }
]
}Use Signals in Your Application
Combine with the TypeScript or Python SDK:
import Revorian from "revorian";
const client = new Revorian("rev_live_sk_...");
const clusters = await client.signals.clusters({ direction: "buy" });
for (const signal of clusters) {
console.log(`${signal.ticker}: ${signal.insiders} insiders bought $${signal.totalValue}`);
}Get Started
Signal feeds are free. Get an API key for full cluster analysis and historical signals.