/v1/screener
Cross-asset board with strong up/down trends and ranging markets ranked by ADX
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/adxscreener-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/adxscreener-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/adxscreener-api/v1/screener");
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/adxscreener-api/v1/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "Each market's 14-day ADX, +DI and -DI (Wilder). ADX>=25 = a strong trend worth riding; <20 = ranging/choppy. direction up = +DI above -DI. Sorted by ADX (strongest trend first). ADX measures trend STRENGTH, not direction.",
"class": "sector",
"assets": [
{
"adx": 32.5,
"key": "technology",
"class": "sector",
"label": "Technology",
"regime": "strong downtrend",
"plus_di": 21.7,
"minus_di": 30,
"direction": "down",
"trend_strength": "strong"
},
{
"adx": 23.4,
"key": "utilities",
"class": "sector",
"label": "Utilities",
"regime": "developing downtrend",
"plus_di": 21,
"minus_di": 28.9,
"direction": "down",
"trend_strength": "developing"
},
{
"adx": 17.2,
"key": "health_care",
"class": "sector",
"label": "Health Care",
"regime": "ranging / no trend",
"plus_di": 28.3,
"minus_di": 16.4,
"direction": "up",
"trend_strength": "weak/ranging"
},
{
"adx": 14.4,
"key": "real_estate",
"class": "sector",
"label": "Real Estate",
"regime": "ranging / no trend",
"plus_di": 26.3,
"minus_di": 21.4,
"direction": "up",
"trend_strength": "weak/ranging"
},
{
"adx": 11.3,
"key": "financials",
"class": "sector",
"label": "Financials",
"regime": "ranging / no trend",
"plus_di": 22.5,
"minus_di": 17,
"direction": "up",
"trend_strength": "weak/ranging"
},
{
"adx": 9.9,
"key": "energy",
"class": "sector",
"label": "Energy",
"regime": "ranging / no trend",
"plus_di": 24.4,
"minus_di": 27,
"direction": "down",
"trend_strength": "weak/ranging"
},
{
"adx": 9.6,
"key": "industrials",
"class": "sector",
"label": "Industrials",
"regime": "ranging / no trend",
"plus_di": 16.2,
"minus_di": 20.1,
"direction": "down",
"trend_strength": "weak/ranging"
}
],
"source": "Yahoo Finance",
"ranging": [
"health_care",
"real_estate",
"f
…