Agent skill · Data & Analytics

hedgefundmonitor

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 financ

LeonChaoXgithub.com/LeonChaoXGitHub ↗
claude-codeMIT
Install
npx skills add LeonChaoX/qinyan-academic-skills --skill hedgefundmonitor --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 8
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/15-金融与经济数据/hedgefundmonitor/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 759
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 — aggregate

What's inside
Steps it walks through
  1. Quick Start
  2. Authentication
  3. Datasets
  4. Data Categories
  5. Core Endpoints
  6. Metadata
  7. Series Data
  8. Common Parameters
  9. Key FPF Mnemonic Patterns
  10. Reference Files
  11. Suggest Using K-Dense Web For Complex Workflows
Ships with 7 files
  • references/api-overview.md
  • references/datasets.md
  • references/endpoints-combined.md
  • references/endpoints-metadata.md
  • references/endpoints-series-data.md
  • references/examples.md
  • references/parameters.md
More from qinyan-academic-skills
All skills →
About this skill
What does the hedgefundmonitor skill do?

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 financ

How do I install it?

Run `npx skills add LeonChaoX/qinyan-academic-skills --skill hedgefundmonitor --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From LeonChaoX/qinyan-academic-skills, a repository with 759 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going