Ir al contenido
GET /v1/screener

Cross-asset board with strong up/down trends and ranging markets ranked by ADX

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/adxscreener-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
…