# Monitor Insider Selling via SEC Form 4 Filings

**Use case:** 

Track executive and director open-market stock sales (Form 4) for any US public company, filtered by minimum transaction value.

## Input

```json
{
  "mode": "form4",
  "tickers": [
    "NVDA"
  ],
  "forms": [
    "10-K",
    "10-Q",
    "8-K"
  ],
  "maxItems": 50,
  "dateFrom": "2025-01-01",
  "dateTo": "",
  "xbrlConcepts": [],
  "statementTypes": [
    "income_statement",
    "balance_sheet",
    "cash_flow"
  ],
  "fiscalPeriods": [],
  "searchQuery": "",
  "searchCiks": [],
  "transactionCodes": [
    "S"
  ],
  "minTransactionValue": 250000,
  "activistOnly": false,
  "eightKItemCodes": [],
  "incrementalMode": false,
  "enableAiSummary": false,
  "aiSummaryMaxChars": 40000,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "insiderName": {
    "label": "Insider",
    "format": "text"
  },
  "insiderTitle": {
    "label": "Title",
    "format": "text"
  },
  "transactionType": {
    "label": "Type",
    "format": "text"
  },
  "transactionCode": {
    "label": "Code",
    "format": "text"
  },
  "shares": {
    "label": "Shares",
    "format": "number"
  },
  "pricePerShare": {
    "label": "Price",
    "format": "number"
  },
  "totalValue": {
    "label": "Value ($)",
    "format": "number"
  },
  "transactionDate": {
    "label": "Date",
    "format": "date"
  },
  "filingUrl": {
    "label": "Filing",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [SEC EDGAR Scraper](https://apify.com/constructive_calm/sec-edgar-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/sec-edgar-scraper) to learn more, explore other use cases, and run it yourself.