/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/volumeindicators-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/volumeindicators-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/volumeindicators-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/volumeindicators-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "candles = open:high:low:close:volume, comma-separated, oldest first. MFI period defaults to 14 (needs period+1); CMF defaults to 20.",
"source": "Computed in-process from caller-supplied OHLCV candles (no upstream)",
"service": "volumeindicators-api",
"endpoints": {
"GET /v1/cmf": "Chaikin Money Flow — buying/selling pressure (candles=o:h:l:c:v,...&period=20).",
"GET /v1/mfi": "Money Flow Index — volume-weighted RSI (candles=o:h:l:c:v,...&period=14).",
"GET /v1/obv": "On-Balance Volume + trend (candles=o:h:l:c:v,...&lookback=10).",
"GET /v1/meta": "This document."
},
"description": "Live volume-based technical indicators computed on demand from OHLCV candles. The mfi endpoint returns the Money Flow Index (volume-weighted RSI) with an overbought/oversold reading; the obv endpoint returns On-Balance Volume with its trend; the cmf endpoint returns Chaikin Money Flow (buying vs selling pressure). These need the volume of each candle, which makes them distinct from price-only indicator tools (RSI, MACD, Stochastic, ADX): they measure whether volume confirms price. Computed locally, nothing stored — works for forex, stocks, crypto or commodities.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:49:02.088Z",
"request_id": "8c04de7a-5e5e-4305-9d99-bb9dd6e70eed"
},
"status": "ok",
"message": "Meta",
"success": true
}