Tools/Signals & cross-source joins

signal.confluence

10 crread-only

The moat join — where do informed INSIDERS (Form 4 open-market buys), institutional SMART MONEY (13F cluster-buys), and CONGRESS (US House STOCK Act trades) AGREE? Pass a `ticker` for all three legs on one name (insider + fund + congress net buy/sell + a verdict that escalates to triple_confluence_buy when all three are buying). Omit `ticker` for the market-wide ranked list — insider×fund names, surfaced first when Congress is buying too (triple_confluence). Joined on ticker — never a fuzzy name match. Each leg carries source provenance; congress $ are amount-range midpoints (approximate).

Parameters#

ParameterTypeDescription
tickeroptstringTicker for per-name confluence, e.g. 'NVDA'. Omit for the market-wide list.
daysoptnumberInsider open-market lookback window in days (1-180, default 180)
min_insidersoptnumberMarket mode: min distinct insider buyers to qualify (default 2)
min_fundsoptnumberMarket mode: min funds adding to qualify (default 2)
limitoptnumberMarket mode: max names (1-50, default 20)

Example call#

bash
curl -X POST https://arkolith.com/api/mcp \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "signal.confluence",
    "arguments": {
      "ticker": "NVDA"
    }
  }
}'

Example response#

json
{
  "mode": "ticker",
  "ticker": "NVDA",
  "issuer": "NVIDIA CORP",
  "window_days": 180,
  "verdict": "triple_confluence_buy",
  "insider_leg": {
    "signal": "buy",
    "unique_buyers": 3,
    "unique_sellers": 0,
    "net_value_usd": 4200000,
    "buy_value_usd": 4200000,
    "sell_value_usd": 0,
    "transactions": 5
  },
  "fund_leg": {
    "funds_holding": 14,
    "funds_adding": 9,
    "funds_trimming": 2,
    "top_holders": [ /* ... */ ]
  },
  "congress_leg": {
    "signal": "buy",
    "chamber": "house",
    "members_buying": 2,
    "members_selling": 0,
    "net_value_usd": 1500000
  },
  "note": "verdict=triple_confluence_buy when insiders, >=1 tracked fund, AND Congress are all net buyers.",
  "provenance": [
    { "source": "SEC EDGAR 13F", "license": "public domain" },
    { "source": "SEC Form 4 (insider)", "license": "public domain" },
    { "source": "US House Clerk STOCK Act", "license": "US public record" }
  ]
}