{"id":51254769,"url":"https://github.com/kooltuoehias/fi-insider","last_synced_at":"2026-06-29T09:30:41.865Z","repository":{"id":358944230,"uuid":"1164300026","full_name":"kooltuoehias/fi-insider","owner":"kooltuoehias","description":null,"archived":false,"fork":false,"pushed_at":"2026-06-28T16:46:55.000Z","size":13471,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-28T18:21:27.654Z","etag":null,"topics":["cloudflare","cloudflare-pages","data","finance","insider","react","sweden"],"latest_commit_sha":null,"homepage":"https://fi-insider.pages.dev/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kooltuoehias.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-22T23:09:54.000Z","updated_at":"2026-06-28T16:46:59.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kooltuoehias/fi-insider","commit_stats":null,"previous_names":["kooltuoehias/fi-insider"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kooltuoehias/fi-insider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kooltuoehias%2Ffi-insider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kooltuoehias%2Ffi-insider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kooltuoehias%2Ffi-insider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kooltuoehias%2Ffi-insider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kooltuoehias","download_url":"https://codeload.github.com/kooltuoehias/fi-insider/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kooltuoehias%2Ffi-insider/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34921804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-29T02:00:05.398Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloudflare","cloudflare-pages","data","finance","insider","react","sweden"],"created_at":"2026-06-29T09:30:40.855Z","updated_at":"2026-06-29T09:30:41.855Z","avatar_url":"https://github.com/kooltuoehias.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FI Insider\n\n\u003e Swedish insider trading monitor — tracks public filings from Finansinspektionen, graded by signal strength.\n\n[![CI](https://github.com/kooltuoehias/fi-insider/actions/workflows/ci.yml/badge.svg)](https://github.com/kooltuoehias/fi-insider/actions/workflows/ci.yml)\n[![codecov](https://codecov.io/gh/kooltuoehias/fi-insider/branch/main/graph/badge.svg)](https://codecov.io/gh/kooltuoehias/fi-insider)\n[![Last Commit](https://img.shields.io/github/last-commit/kooltuoehias/fi-insider)](https://github.com/kooltuoehias/fi-insider/commits/main)\n![React](https://img.shields.io/badge/React_18-61DAFB?logo=react\u0026logoColor=black)\n![TypeScript](https://img.shields.io/badge/TypeScript_5-3178C6?logo=typescript\u0026logoColor=white)\n![Vite](https://img.shields.io/badge/Vite_5-646CFF?logo=vite\u0026logoColor=white)\n\nData is scraped daily from the [FI public registry](https://marknadssok.fi.se/Publiceringsklient) and auto-deployed via Cloudflare Pages. No backend — all analysis runs client-side.\n\n## Features\n\n- **Signal Grading** — acquisitions ranked Table-Pounding / Conviction / Watch / Token by SEK value\n- **Cluster Detection** — flags stocks where 2+ insiders buy within 30 days\n- **CEO + CFO Alerts** — when both C-suite officers buy within 90 days\n- **Market Segments** — Large / Mid / Small Cap via ISIN lookup with Yahoo Finance market caps\n- **Backtested Tags** — Large Cap CFO buys (79.8% win rate), Huge Single (≥10M SEK), Chairman Warning (inverse signal)\n- **CSV Export** — download any filtered view\n\n## Architecture\n\n```\nfi-insider/\n├── scraper/       # Node.js scraper → outputs to frontend/public/data/\n├── frontend/      # React + Vite + Tailwind CSS dashboard\n└── .github/       # GitHub Actions for automated daily scraping\n```\n\n**Data flow:** Scraper fetches HTML from `marknadssok.fi.se`, parses with cheerio, writes per-year JSON files. GitHub Actions runs daily at 15:45 UTC. Cloudflare Pages auto-deploys on every commit.\n\n## Local Development\n\n```bash\n# Scraper\ncd scraper \u0026\u0026 npm install \u0026\u0026 npm start\n\n# Frontend\ncd frontend \u0026\u0026 yarn install \u0026\u0026 yarn dev\n# → http://localhost:6175\n```\n\n## Tests\n\n```bash\ncd frontend\nyarn test             # run once\nyarn test:coverage    # with coverage report\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkooltuoehias%2Ffi-insider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkooltuoehias%2Ffi-insider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkooltuoehias%2Ffi-insider/lists"}