mirror of
https://github.com/caty21/forex-dashboard.git
synced 2026-08-06 01:07:45 +00:00
ecb815619b
- drivers: switch Brent (cb.f) and WTI (cl.f) from stale FRED to Stooq near-real-time futures — same stooqMetal() already used for gold/silver - macro: add scrapePMI() to scrape Trading Economics meta description for manufacturing-pmi and services-pmi for all 8 currencies (no API key needed) - narrative: replace dead Bytez API with Groq (OpenAI-compatible, free tier) env var renamed BYTEZ_API_KEY → GROQ_API_KEY, model llama-3.1-8b-instant - NarrativeButton: rebrand "Erreur Bytez" / "Bytez AI" → "Erreur IA" / "Groq AI" Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
169 lines
7.2 KiB
TypeScript
169 lines
7.2 KiB
TypeScript
import { NextResponse } from "next/server";
|
||
|
||
// ── FRED (macro + taux + spread) ──────────────────────────────────────────────
|
||
// limit=1 → valeur seule. limit=10 → filtre les "." pour trouver la dernière valeur valide.
|
||
|
||
async function fredObs(series: string, apiKey: string): Promise<number | null> {
|
||
try {
|
||
const url = `https://api.stlouisfed.org/fred/series/observations?series_id=${series}&api_key=${apiKey}&file_type=json&sort_order=desc&limit=1`;
|
||
const res = await fetch(url, { next: { revalidate: 86400 } });
|
||
if (!res.ok) return null;
|
||
const obs = ((await res.json())?.observations ?? []).find(
|
||
(o: { value: string }) => o.value !== "."
|
||
);
|
||
return obs ? parseFloat(obs.value) : null;
|
||
} catch { return null; }
|
||
}
|
||
|
||
type FredResult = { value: number | null; delta: number | null; deltaPct: number | null };
|
||
|
||
/** Fetche les 10 dernières obs pour calculer valeur + delta vs session précédente */
|
||
async function fredObsDelta(series: string, apiKey: string): Promise<FredResult> {
|
||
const empty: FredResult = { value: null, delta: null, deltaPct: null };
|
||
try {
|
||
const url = `https://api.stlouisfed.org/fred/series/observations?series_id=${series}&api_key=${apiKey}&file_type=json&sort_order=desc&limit=10`;
|
||
const res = await fetch(url, { next: { revalidate: 86400 } });
|
||
if (!res.ok) return empty;
|
||
const obs: number[] = ((await res.json())?.observations ?? [])
|
||
.filter((o: { value: string }) => o.value !== ".")
|
||
.map((o: { value: string }) => parseFloat(o.value));
|
||
if (!obs.length) return empty;
|
||
const value = obs[0];
|
||
const prev = obs[1] ?? null;
|
||
const delta = prev !== null ? parseFloat((value - prev).toFixed(2)) : null;
|
||
const deltaPct = prev !== null ? parseFloat(((value - prev) / prev * 100).toFixed(2)) : null;
|
||
return { value, delta, deltaPct };
|
||
} catch { return empty; }
|
||
}
|
||
|
||
// ── Stooq (Or XAU/USD, Argent XAG/USD — gratuit, sans clé, quasi temps réel) ─
|
||
// delta = Close - Open = variation intraday vs ouverture de session
|
||
|
||
async function stooqMetal(symbol: string): Promise<FredResult> {
|
||
const empty: FredResult = { value: null, delta: null, deltaPct: null };
|
||
try {
|
||
const url = `https://stooq.com/q/l/?s=${symbol}&f=sd2t2ohlcv&h&e=csv`;
|
||
const res = await fetch(url, {
|
||
next: { revalidate: 300 }, // cache 5 min
|
||
headers: { "User-Agent": "Mozilla/5.0 (compatible; ForexDashboard/1.0)" },
|
||
});
|
||
if (!res.ok) return empty;
|
||
const text = await res.text();
|
||
const lines = text.trim().split("\n");
|
||
if (lines.length < 2) return empty;
|
||
const cols = lines[1].split(",");
|
||
// CSV header: Symbol,Date,Time,Open,High,Low,Close,Volume
|
||
const open = parseFloat(cols[3]);
|
||
const close = parseFloat(cols[6]);
|
||
if (isNaN(close)) return empty;
|
||
const delta = !isNaN(open) ? parseFloat((close - open).toFixed(2)) : null;
|
||
const deltaPct = (!isNaN(open) && open > 0)
|
||
? parseFloat(((close - open) / open * 100).toFixed(2))
|
||
: null;
|
||
return { value: parseFloat(close.toFixed(2)), delta, deltaPct };
|
||
} catch { return empty; }
|
||
}
|
||
|
||
// ── Binance (Bitcoin — gratuit, sans clé, temps réel) ────────────────────────
|
||
|
||
async function binanceBTC(): Promise<{ value: number | null; change24h: number | null }> {
|
||
try {
|
||
const res = await fetch("https://api.binance.com/api/v3/ticker/24hr?symbol=BTCUSDT", { cache: "no-store" });
|
||
if (!res.ok) return { value: null, change24h: null };
|
||
const d = await res.json();
|
||
const price = parseFloat(d.lastPrice);
|
||
const pctChg = parseFloat(d.priceChangePercent);
|
||
return {
|
||
value: isNaN(price) ? null : Math.round(price),
|
||
change24h: isNaN(pctChg) ? null : parseFloat(pctChg.toFixed(2)),
|
||
};
|
||
} catch { return { value: null, change24h: null }; }
|
||
}
|
||
|
||
// ── CoinGecko (Bitcoin fallback) ──────────────────────────────────────────────
|
||
|
||
async function coingeckoBTC(): Promise<{ value: number | null; change24h: number | null }> {
|
||
try {
|
||
const res = await fetch(
|
||
"https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd&include_24hr_change=true",
|
||
{ cache: "no-store" }
|
||
);
|
||
if (!res.ok) return { value: null, change24h: null };
|
||
const d = await res.json();
|
||
return {
|
||
value: d?.bitcoin?.usd ?? null,
|
||
change24h: d?.bitcoin?.usd_24h_change ?? null,
|
||
};
|
||
} catch { return { value: null, change24h: null }; }
|
||
}
|
||
|
||
// ── GET ───────────────────────────────────────────────────────────────────────
|
||
|
||
export async function GET() {
|
||
const fredKey = process.env.FRED_API_KEY;
|
||
if (!fredKey) return NextResponse.json({ error: "FRED_API_KEY missing" }, { status: 500 });
|
||
|
||
// 1. Marchés indices — FRED (données fin de journée, cache 24h)
|
||
// VIXCLS = VIX clôture CBOE | SP500 = S&P 500
|
||
const [vixQ, sp500Q] = await Promise.all([
|
||
fredObsDelta("VIXCLS", fredKey),
|
||
fredObsDelta("SP500", fredKey),
|
||
]);
|
||
|
||
// Pétrole — Stooq futures (quasi temps réel, cache 5 min, sans clé API)
|
||
// cl.f = WTI NYMEX | cb.f = Brent ICE → delta = variation intraday vs ouverture
|
||
const [brentQ, wtiQ] = await Promise.all([
|
||
stooqMetal("cb.f"),
|
||
stooqMetal("cl.f"),
|
||
]);
|
||
|
||
// 2. Métaux précieux — Stooq (quasi temps réel, cache 5 min, sans clé API)
|
||
// delta = variation intraday vs ouverture de session
|
||
const [goldQ, silverQ] = await Promise.all([
|
||
stooqMetal("xauusd"),
|
||
stooqMetal("xagusd"),
|
||
]);
|
||
|
||
// 3. Bitcoin — Binance (temps réel), fallback CoinGecko
|
||
const btcBin = await binanceBTC();
|
||
const btcCg = btcBin.value === null ? await coingeckoBTC() : { value: null, change24h: null };
|
||
|
||
// 4. FRED — spreads crédit + taux directeurs (cache 24h)
|
||
const [hyRaw, igRaw, us10y, us2y] = await Promise.all([
|
||
fredObs("BAMLH0A0HYM2", fredKey),
|
||
fredObs("BAMLC0A0CM", fredKey),
|
||
fredObs("DGS10", fredKey),
|
||
fredObs("DGS2", fredKey),
|
||
]);
|
||
|
||
return NextResponse.json({
|
||
// Sentiment / Risk-On
|
||
vix: vixQ.value,
|
||
vixDelta: vixQ.delta,
|
||
sp500: sp500Q.value,
|
||
sp500Change: sp500Q.delta,
|
||
sp500ChangePct: sp500Q.deltaPct,
|
||
btc: btcBin.value ?? btcCg.value,
|
||
btcChange24h: btcBin.change24h ?? btcCg.change24h,
|
||
// Crédit (FRED, % × 100 = bps)
|
||
hySpread: hyRaw != null ? Math.round(hyRaw * 100) : null,
|
||
igSpread: igRaw != null ? Math.round(igRaw * 100) : null,
|
||
// Taux (DXY injecté par page.tsx depuis /api/fx)
|
||
us10y,
|
||
us2y,
|
||
curveSlope: us10y !== null && us2y !== null ? Math.round((us10y - us2y) * 100) : null,
|
||
// Commodités — Or/Argent intraday (Stooq), Pétrole j-1 (FRED)
|
||
gold: goldQ.value,
|
||
goldDelta: goldQ.delta,
|
||
silver: silverQ.value,
|
||
silverDelta: silverQ.delta,
|
||
brent: brentQ.value,
|
||
brentDelta: brentQ.delta,
|
||
wti: wtiQ.value,
|
||
wtiDelta: wtiQ.delta,
|
||
// Compat
|
||
copper: null,
|
||
timestamp: Date.now(),
|
||
});
|
||
}
|