Monitors SEC EDGAR Form 4 filings in near real-time, detects insider buy clusters, sends Slack alerts, and optionally executes trades via Alpaca. Copying the idea from https://insidercopytrading.com
Go to file
Claude 7e9221a914 feat: add PLAN.md and insider copytrade POC implementation
- PLAN.md: full implementation plan from issue
- config.py: configurable thresholds, API keys via .env
- ingestion/: EDGAR RSS poller + Form 4 XML parser
- db/: SQLite schema + interface (WAL mode)
- signals/: filter engine (buy/10b5-1/value/role) + cluster detector
- alerts/: Slack webhook alert with score gating
- broker/: Alpaca paper/live trade execution
- backtest/: historical signal backtesting with yfinance
- main.py: CLI entrypoint (run | fetch-once | backtest)
2026-05-04 16:15:22 +00:00
.gitea/workflows Initial commit 2026-05-04 18:07:44 +02:00
alerts feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
backtest feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
broker feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
db feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
ingestion feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
signals feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
.env.example feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
.gitignore Initial commit 2026-05-04 18:07:44 +02:00
config.py feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
main.py feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
PLAN.md feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00
requirements.txt feat: add PLAN.md and insider copytrade POC implementation 2026-05-04 16:15:22 +00:00