# Large Insider Purchases – Executive Conviction Buys

**Use case:** 

Filter SEC Form 4 filings for insider buys above a dollar threshold. Tracks executive conviction buys for institutional due diligence.

## Input

```json
{
  "tickers": "NVDA",
  "tradeTypes": [
    "purchase",
    "sale"
  ],
  "minTradeValueUsd": 25000,
  "daysBack": 7,
  "maxResults": 5000,
  "insiderRoles": [],
  "clusterBuysOnly": false,
  "minClusterInsiders": 2,
  "excludePureTenPercentOwners": true
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "insiderName": {
    "label": "Insider name",
    "format": "string"
  },
  "insiderTitle": {
    "label": "Insider title (raw)",
    "format": "string"
  },
  "tradeType": {
    "label": "Trade type",
    "format": "string"
  },
  "valueUsd": {
    "label": "Trade value (USD)",
    "format": "number"
  },
  "quantity": {
    "label": "Shares traded",
    "format": "integer"
  },
  "price": {
    "label": "Price per share",
    "format": "number"
  },
  "ownershipChangePct": {
    "label": "Ownership change %",
    "format": "number"
  },
  "sharesOwnedAfter": {
    "label": "Shares owned after",
    "format": "integer"
  },
  "tradeDate": {
    "label": "Trade date",
    "format": "string"
  },
  "filedAt": {
    "label": "Filed at",
    "format": "string"
  },
  "isClusterBuy": {
    "label": "Cluster buy",
    "format": "boolean"
  },
  "clusterInsiderCount": {
    "label": "Cluster insider count",
    "format": "integer"
  },
  "insiderRoles": {
    "label": "Insider roles",
    "format": "array"
  },
  "secForm4Url": {
    "label": "SEC Form 4 URL",
    "format": "string"
  },
  "isAmendedFiling": {
    "label": "Amended filing",
    "format": "boolean"
  },
  "isMultipleTransactions": {
    "label": "Multiple transactions",
    "format": "boolean"
  },
  "hasDerivativeTransactions": {
    "label": "Has options/warrants",
    "format": "boolean"
  },
  "insiderCik": {
    "label": "Insider CIK",
    "format": "string"
  },
  "accessionNumber": {
    "label": "Accession number",
    "format": "string"
  },
  "ownershipChangeRaw": {
    "label": "Ownership change (raw)",
    "format": "string"
  },
  "tradeTypeRaw": {
    "label": "Trade type (raw)",
    "format": "string"
  },
  "flagsRaw": {
    "label": "Filing flags (raw)",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Stock Insider Trading - SEC Form 4 Buys, Sells & Cluster Buys](https://apify.com/michael_b/stock-insider-trading) with a specific input configuration. Visit the [Actor detail page](https://apify.com/michael_b/stock-insider-trading) to learn more, explore other use cases, and run it yourself.