hedgefundmonitor

Solid

Query the OFR (Office of Financial Research) Hedge Fund Monitor API for hedge fund data including SEC Form PF aggregated statistics, CFTC Traders in Financial Futures, FICC Sponsored Repo volumes, and FRB SCOOS dealer financing terms. Access time series data on hedge fund size, leverage, counterparties, liquidity, complexity, and risk management. No API key or registration required. Use when working with hedge fund data, systemic risk monitoring, financial stability research, hedge fund leverage or leverage ratios, counterparty concentration, Form PF statistics, repo market data, or OFR financial research data.

AI & Automation 2,202 stars 164 forks Updated 1 weeks ago Apache-2.0

Install

View on GitHub

Quality Score: 94/100

Stars 20%
100
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# OFR Hedge Fund Monitor API Free, open REST API from the U.S. Office of Financial Research (OFR) providing aggregated hedge fund time series data. No API key or registration required. **Base URL:** `https://data.financialresearch.gov/hf/v1` ## Quick Start ```python import requests import pandas as pd BASE = "https://data.financialresearch.gov/hf/v1" # List all available datasets resp = requests.get(f"{BASE}/series/dataset") datasets = resp.json() # Returns: {"ficc": {...}, "fpf": {...}, "scoos": {...}, "tff": {...}} # Search for series by keyword resp = requests.get(f"{BASE}/metadata/search", params={"query": "*leverage*"}) results = resp.json() # Each result: {mnemonic, dataset, field, value, type} # Fetch a single time series resp = requests.get(f"{BASE}/series/timeseries", params={ "mnemonic": "FPF-ALLQHF_LEVERAGERATIO_GAVWMEAN", "start_date": "2015-01-01" }) series = resp.json() # [[date, value], ...] df = pd.DataFrame(series, columns=["date", "value"]) df["date"] = pd.to_datetime(df["date"]) ``` ## Authentication None required. The API is fully open and free. ## Datasets | Key | Dataset | Update Frequency | |-----|---------|-----------------| | `fpf` | SEC Form PF — aggregated stats from qualifying hedge fund filings | Quarterly | | `tff` | CFTC Traders in Financial Futures — futures market positioning | Monthly | | `scoos` | FRB Senior Credit Officer Opinion Survey on Dealer Financing Terms | Quarterly | | `ficc` | FICC Sponsored Repo Service Volum...

Details

Author
foryourhealth111-pixel
Repository
foryourhealth111-pixel/Vibe-Skills
Created
3 months ago
Last Updated
1 weeks ago
Language
Python
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

usfiscaldata

Query the U.S. Treasury Fiscal Data API for federal financial data including national debt, government spending, revenue, interest rates, exchange rates, and savings bonds. Access 54 datasets and 182 data tables with no API key required. Use when working with U.S. federal fiscal data, national debt tracking (Debt to the Penny), Daily Treasury Statements, Monthly Treasury Statements, Treasury securities auctions, interest rates on Treasury securities, foreign exchange rates, savings bonds, or any U.S. government financial statistics.

2,202 Updated 1 weeks ago
foryourhealth111-pixel
Data & Documents Solid

usfiscaldata

Query the U.S. Treasury Fiscal Data API for federal financial data including national debt, government spending, revenue, interest rates, exchange rates, and savings bonds. Access 54 datasets and 182 data tables with no API key required. Use when working with U.S. federal fiscal data, national debt tracking (Debt to the Penny), Daily Treasury Statements, Monthly Treasury Statements, Treasury securities auctions, interest rates on Treasury securities, foreign exchange rates, savings bonds, or any U.S. government financial statistics.

26,659 Updated 2 days ago
K-Dense-AI
AI & Automation Solid

fred-economic-data

Query FRED (Federal Reserve Economic Data) API for 800,000+ economic time series from 100+ sources. Access GDP, unemployment, inflation, interest rates, exchange rates, housing, and regional data. Use for macroeconomic analysis, financial research, policy studies, economic forecasting, and academic research requiring U.S. and international economic indicators.

2,202 Updated 1 weeks ago
foryourhealth111-pixel
AI & Automation Listed

macro-liquidity-monitor

USD funding / repo-plumbing liquidity radar. Tracks SOFR-IORB spread, SOFR tail, ON RRP buffer, bank reserves vs LCLoR, TGA drain/add, net liquidity, and SRF takeup (the funding-stress alarm). Outputs a tightness regime 🟢 ABUNDANT / 🟡 AMPLE / 🟠 TIGHTENING / 🔴 STRESS with the two lenses — "too loose → bubble" and "too tight → funding stress". All data from NY Fed Markets API + FRED (no API key). Runs on-demand or daily via GitHub Actions with Telegram push on regime change. Triggers in English ("liquidity check", "is liquidity tight", "SOFR IORB spread", "RRP balance", "when does liquidity tighten", "repo stress") or Chinese ("流动性怎么样", "流动性紧不紧", "什么时候收紧", "SOFR IORB 利差", "RRP 还剩多少", "回购市场压力", "美元流动性").

1 Updated today
ssurmic
AI & Automation Listed

13f-firehose

Daily monitor for new 13F-HR filings from famous funds. Telegram alerts with NEW/ADDED/CLOSED diff vs. prior quarter.

1 Updated today
ssurmic