announcements

Kathleen Davis 2026-03-14T13:29:08.531659Z

A few days left folks! Proposal deadline for Clojurists Together's Q2 2026 funding is March 19th midnight PT. We'll be funding between 5-6 projects for up to $33K. More information about the funding, our recent survey, and https://www.clojuriststogether.org/news/call-for-proposals.-feb.-2026-survey/. Please consider submitting a quick proposal and good luck!

5
⏱️ 3
🎉 2
Matt 2026-03-14T15:39:19.420749Z

Announcing edgarjure — a Clojure library for SEC EDGAR data. SEC EDGAR is the U.S. Securities and Exchange Commission's public filing system. Every public company in the U.S. files its financials, insider trades, institutional holdings, and risk disclosures here — decades of structured data covering thousands of firms, all freely accessible via public APIs. edgarjure gives you programmatic access to all of it from Clojure. Pull normalized financial statements with automatic line-item resolution and restatement deduplication. Query XBRL facts as datasets with human-readable labels. Extract full-text sections from 10-K/10-Q filings (MD&A, Risk Factors, etc.). Parse Form 4 insider trades and 13F institutional holdings. Screen a single XBRL concept across every SEC filer in one API call. Build multi-ticker panel datasets with point-in-time support for look-ahead-bias-free backtests. Download filings in bulk with bounded parallelism. Dataset results are returned as tech.ml.dataset for easy downstream manipulation. The goal is comprehensive EDGAR access as a composable, research-grade Clojure data system — immutable data, lazy sequences, keyword args throughout, and a unified API that accepts ticker or CIK interchangeably. This is an early release (0.1.1) — feedback and contributions very welcome. GitHub: https://github.com/clojure-finance/edgarjure Clojars: https://clojars.org/com.github.clojure-finance/edgarjure cljdoc: https://cljdoc.org/d/com.github.clojure-finance/edgarjure

🆒 15
👀 7
Matt 2026-03-16T08:35:56.458999Z

Caught a few more bugs, new version is out.

Dustin Getz (Hyperfiddle) 2026-03-16T10:56:24.204769Z

👀

Dustin Getz (Hyperfiddle) 2026-03-15T12:39:19.175759Z

Just a prototype, probably too rough to release 🙂

‼️ 3
Matt 2026-03-15T14:28:54.737299Z

Awesome! Check out v0.1.2, it should fix the 404 errors

👀 1
Dustin Getz (Hyperfiddle) 2026-03-15T14:33:27.555809Z

Feature request: a way to construct the http://sec.gov urls, the URLs don't seem to be in the dataset

Dustin Getz (Hyperfiddle) 2026-03-15T14:34:09.045899Z

the url in the screenshot was an attempt to get claude to guess the url

Matt 2026-03-15T14:42:29.635659Z

Thanks! Just shipped 0.1.3 with this fixed. Every filing map now has a :url field pointing directly to the primary document. We also made filing-doc-url public and exposed it as e/doc-url in the api facade, so you can construct URLs for any document in a filing: (e/doc-url f "R2.htm") (e/doc-url f (:name (e/exhibit f "EX-21"))) filing-by-accession now includes :url as well.

🔥 1
Dustin Getz (Hyperfiddle) 2026-03-15T18:52:22.347369Z

Live link https://demo.clojure.net/dustingetz.nav-edgar$search/~map,(:hyperfiddle.navigator6$search,'google') lmk if it breaks or if there are some interesting connections to surface that i missed. There are bugs, the tech.ml queries I think are broken (`balance`, etc)

Matt 2026-03-16T02:15:26.622939Z

Looks very cool! Found a few bugs and fixed them, hopefully it works better now, new version out v.0.1.4. Thanks!

Dustin Getz (Hyperfiddle) 2026-03-14T15:47:44.765029Z

wow

roklenarcic 2026-03-14T16:37:08.541019Z

This an amazing project for so many tinkerers

Matt 2026-03-14T23:46:06.284499Z

Thanks, I hope it'll be useful for the community! 🙏