/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/trendindicators-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/trendindicators-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/trendindicators-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/trendindicators-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "candles = open:high:low:close, comma-separated, oldest first. ADX needs 2 x period + 1 candles (period default 14); Donchian period defaults to 20; PSAR step 0.02 / max 0.2.",
"source": "Computed in-process from caller-supplied OHLC candles (no upstream)",
"service": "trendindicators-api",
"endpoints": {
"GET /v1/adx": "ADX + DI direction (candles=o:h:l:c,...&period=14).",
"GET /v1/meta": "This document.",
"GET /v1/psar": "Parabolic SAR trailing stop + trend (candles=o:h:l:c,...&step=0.02&max=0.2).",
"GET /v1/donchian": "Donchian Channel + breakout signal (candles=o:h:l:c,...&period=20)."
},
"description": "Live trend and direction indicators computed on demand from OHLC candles. The adx endpoint returns the ADX with +DI and -DI (trend strength and direction, Wilder's method); the psar endpoint returns the Parabolic SAR trailing stop-and-reverse level and the trend; the donchian endpoint returns the Donchian Channel (highest high, lowest low, midline) with breakout signal. These need the full high/low/close and answer whether a market is trending and which way — distinct from momentum oscillators, closes-only indicators and volatility tools. Computed locally, nothing stored.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:49:04.190Z",
"request_id": "2a8172d4-1b13-48f1-be25-cf1f946dbff5"
},
"status": "ok",
"message": "Meta",
"success": true
}