feat: OISEnhancedBlock — rate curve, implied pts, scénarios charts per CB

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
caty21
2026-06-27 14:12:05 +02:00
co-authored by Claude Sonnet 4.6
parent a3d847ce59
commit 9da463a424
12 changed files with 1777 additions and 754 deletions
+106 -56
View File
@@ -1,44 +1,39 @@
import { NextResponse } from "next/server";
import { inflateRawSync } from "zlib";
import { COT_CODES } from "@/lib/constants";
import type { Currency, CotEntry } from "@/lib/types";
// ── CFTC Traders in Financial Futures (TFF) — format legacy CSV sans header ──
// URL : https://www.cftc.gov/dea/newcot/FinFutWk.txt (mis à jour chaque vendredi)
// ── CFTC Traders in Financial Futures (TFF) — fichier annuel ZIP ──────────────
// URL : https://www.cftc.gov/files/dea/history/fut_fin_txt_YYYY.zip
// Contient toutes les semaines de l'année en ordre décroissant.
// On extrait les 2 dernières semaines par devise pour calculer les deltas.
//
// Colonnes (0-based, séparées par virgule) :
// 0 Market_and_Exchange_Names
// 1 As_of_Date_In_Form_YYMMDD
// 2 Report_Date_as_YYYY-MM-DD
// 3 CFTC_Contract_Market_Code
// 4 CFTC_Market_Code
// 5 CFTC_Region_Code
// 6 CFTC_Commodity_Code
// 7 Open_Interest_All
// 8 Dealer_Positions_Long_All
// 9 Dealer_Positions_Short_All
// 10 Dealer_Positions_Spreading_All
// 11 Asset_Mgr_Positions_Long_All
// 12 Asset_Mgr_Positions_Short_All
// 13 Asset_Mgr_Positions_Spreading_All
// 14 Lev_Money_Positions_Long_All ← hedge funds (positions spéculatives)
// 14 Lev_Money_Positions_Long_All ← hedge funds
// 15 Lev_Money_Positions_Short_All
// 16 Lev_Money_Positions_Spreading_All
// ...
const CFTC_URL = "https://www.cftc.gov/dea/newcot/FinFutWk.txt";
const IDX_CODE = 3;
const IDX_CODE = 3;
const IDX_DATE = 2;
const IDX_AM_LONG = 11;
const IDX_AM_SHORT = 12;
const IDX_LEV_LONG = 14;
const IDX_LEV_SHORT = 15;
const IDX_DATE = 2;
function cftcZipUrl(): string {
return `https://www.cftc.gov/files/dea/history/fut_fin_txt_${new Date().getFullYear()}.zip`;
}
// In-memory cache — expire le vendredi suivant à 15h30 UTC (publication CFTC)
// TTL max 4 jours pour garantir refresh chaque semaine
let _cache: { data: Record<string, unknown>; ts: number; weekDate: string } | null = null;
let _cache: { data: Record<string, unknown>; ts: number } | null = null;
function nextCftcRelease(): number {
const now = new Date();
const d = new Date(now);
// Prochain vendredi 15:30 UTC
const d = new Date();
const daysUntilFriday = (5 - d.getUTCDay() + 7) % 7 || 7;
d.setUTCDate(d.getUTCDate() + daysUntilFriday);
d.setUTCHours(15, 30, 0, 0);
@@ -46,9 +41,7 @@ function nextCftcRelease(): number {
}
function cacheTtl(): number {
const ttlToRelease = nextCftcRelease() - Date.now();
// max 4 jours pour éviter de bloquer sur de vieilles données
return Math.min(ttlToRelease, 4 * 24 * 3600_000);
return Math.min(nextCftcRelease() - Date.now(), 4 * 24 * 3600_000);
}
export type { CotEntry } from "@/lib/types";
@@ -59,81 +52,138 @@ export async function GET() {
}
try {
const res = await fetch(CFTC_URL, {
next: { revalidate: 86400 }, // revalidate quotidien — CFTC sort chaque vendredi
const res = await fetch(cftcZipUrl(), {
cache: "no-store",
headers: { "User-Agent": "Mozilla/5.0 (compatible; ForexDashboard/1.0)" },
cache: "no-store", // forcer fetch frais pour l'in-memory cache ci-dessus
});
if (!res.ok) {
return NextResponse.json({ error: `CFTC fetch failed: ${res.status}` }, { status: 502 });
}
const text = await res.text();
const result = parseCOT(text);
const zipBuf = Buffer.from(await res.arrayBuffer());
const text = extractFirstFileFromZip(zipBuf);
if (!text) return NextResponse.json({ error: "ZIP parse failed" }, { status: 502 });
const weekDate = Object.values(result as Record<string, CotEntry>)[0]?.weekDate ?? "";
_cache = { data: result, ts: Date.now(), weekDate };
const result = parseCOT(text);
_cache = { data: result, ts: Date.now() };
return NextResponse.json(result);
} catch (err) {
return NextResponse.json({ error: String(err) }, { status: 502 });
}
}
// ── ZIP parser minimal (format PKZIP, méthode 8 = deflate) ───────────────────
function extractFirstFileFromZip(buf: Buffer): string | null {
try {
// Find End-of-Central-Directory (PK\x05\x06)
let eocd = -1;
for (let i = buf.length - 22; i >= 0; i--) {
if (buf[i] === 0x50 && buf[i + 1] === 0x4b && buf[i + 2] === 0x05 && buf[i + 3] === 0x06) {
eocd = i; break;
}
}
if (eocd < 0) return null;
const localHdrOffset = buf.readUInt32LE(buf.readUInt32LE(eocd + 16) + 42);
const lfnLen = buf.readUInt16LE(localHdrOffset + 26);
const lexLen = buf.readUInt16LE(localHdrOffset + 28);
const dataStart = localHdrOffset + 30 + lfnLen + lexLen;
const compSize = buf.readUInt32LE(localHdrOffset + 18);
const method = buf.readUInt16LE(localHdrOffset + 8);
const compressed = buf.slice(dataStart, dataStart + compSize);
const decompressed = method === 8
? inflateRawSync(compressed)
: compressed; // stored (method 0)
return decompressed.toString("utf8");
} catch {
return null;
}
}
// ── Parseur CSV TFF ──────────────────────────────────────────────────────────
type RawWeek = {
hfLongs: number; hfShorts: number;
amLongs: number; amShorts: number;
weekDate: string;
};
function parseCOT(csv: string): Record<string, CotEntry> {
const lines = csv.split("\n");
const lines = csv.split("\n");
const targetCodes = new Set(Object.values(COT_CODES));
const result: Record<string, CotEntry> = {};
const raw: Record<string, RawWeek[]> = {};
for (const line of lines) {
if (!line.trim()) continue;
// Split respectant les guillemets
const cols = splitCsvLine(line);
if (cols.length < 16) continue;
const code = cols[IDX_CODE]?.trim();
if (!code || !targetCodes.has(code)) continue;
const longs = parseInt(cols[IDX_LEV_LONG]?.trim() ?? "0", 10);
const shorts = parseInt(cols[IDX_LEV_SHORT]?.trim() ?? "0", 10);
if (isNaN(longs) || isNaN(shorts)) continue;
const hfLongs = parseInt(cols[IDX_LEV_LONG]?.trim() ?? "0", 10);
const hfShorts = parseInt(cols[IDX_LEV_SHORT]?.trim() ?? "0", 10);
const amLongs = parseInt(cols[IDX_AM_LONG]?.trim() ?? "0", 10);
const amShorts = parseInt(cols[IDX_AM_SHORT]?.trim() ?? "0", 10);
if (isNaN(hfLongs) || isNaN(hfShorts) || isNaN(amLongs) || isNaN(amShorts)) continue;
const total = longs + shorts;
const net = longs - shorts;
const weekDate = cols[IDX_DATE]?.trim() ?? "";
if (!raw[code]) raw[code] = [];
// Keep only the 2 most-recent weeks (file is in descending date order)
if (raw[code].length < 2) raw[code].push({ hfLongs, hfShorts, amLongs, amShorts, weekDate });
}
const result: Record<string, CotEntry> = {};
for (const [code, weeks] of Object.entries(raw)) {
const currency = (Object.entries(COT_CODES) as [Currency, string][])
.find(([, c]) => c === code)?.[0];
if (!currency) continue;
if (!currency || weeks.length === 0) continue;
const cur = weeks[0];
const prev = weeks[1] ?? null;
const hfTotal = cur.hfLongs + cur.hfShorts;
const hfNet = cur.hfLongs - cur.hfShorts;
const amTotal = cur.amLongs + cur.amShorts;
const amNet = cur.amLongs - cur.amShorts;
result[currency] = {
net,
longPct: total > 0 ? Math.round((longs / total) * 100) : 50,
shortPct: total > 0 ? Math.round((shorts / total) * 100) : 50,
totalLev: total,
weekDate,
net: hfNet,
hfLongs: cur.hfLongs,
hfShorts: cur.hfShorts,
longPct: hfTotal > 0 ? Math.round((cur.hfLongs / hfTotal) * 100) : 50,
shortPct: hfTotal > 0 ? Math.round((cur.hfShorts / hfTotal) * 100) : 50,
totalLev: hfTotal,
amNet,
amLongs: cur.amLongs,
amShorts: cur.amShorts,
amLongPct: amTotal > 0 ? Math.round((cur.amLongs / amTotal) * 100) : 50,
amTotal,
netDelta: prev !== null ? hfNet - (prev.hfLongs - prev.hfShorts) : null,
longsDelta: prev !== null ? cur.hfLongs - prev.hfLongs : null,
shortsDelta: prev !== null ? cur.hfShorts - prev.hfShorts : null,
amNetDelta: prev !== null ? amNet - (prev.amLongs - prev.amShorts) : null,
weekDate: cur.weekDate,
prevWeekDate: prev?.weekDate ?? null,
};
}
return result;
}
/** Gère les champs entourés de guillemets doubles dans un CSV */
function splitCsvLine(line: string): string[] {
const result: string[] = [];
let current = "";
let inQuotes = false;
for (let i = 0; i < line.length; i++) {
const ch = line[i];
if (ch === '"') {
inQuotes = !inQuotes;
} else if (ch === "," && !inQuotes) {
result.push(current);
current = "";
} else {
current += ch;
}
if (ch === '"') { inQuotes = !inQuotes; }
else if (ch === "," && !inQuotes) { result.push(current); current = ""; }
else { current += ch; }
}
result.push(current);
return result;