adx_14
Average Directional Index (14-period): trend strength from 0 to 100.
At a glance
| Type | numeric |
| Group | Technicals |
| Category | Trend & direction |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | full · since 2003 |
| Nullable | yes — NULL where not applicable |
Trend direction and strength: MACD, ADX/±DI, SMA-based trend reads, and reversal composites.
Query it
Every applicable form factor, grouped by endpoint family. Swap YOUR_KEY for the value from /dashboard/keys. Response payloads are real captures, sampled 2026-08-18 and trimmed — your run's values and dates will differ.
Use signals /v2/signals/{signal}
One signal across the market: who matches now, who matched then, and a push when someone starts. Docs →
curl -G "https://api.tickerbot.io/v2/signals/adx_14" \
--data-urlencode "condition=> 61.72456526397753" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:35.240Z",
"signal": "adx_14",
"condition": "> 61.72456526397753",
"universe": null,
"count": 2,
"results": [
{
"ticker": "CMBO",
"name": "Wayfinder Dynamic U.S. Interest Rate ETF",
"value": 97.89936637622246
},
{
"ticker": "BENJ",
"name": "Horizon Landmark ETF",
"value": 97.87962585608796
}
]
}curl -G "https://api.tickerbot.io/v2/signals/adx_14" \
--data-urlencode "condition=> 61.72456526397753" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "adx_14",
"condition": "> 61.72456526397753",
"universe": null,
"count": 2,
"results": [
{
"ticker": "CMBO",
"name": "Wayfinder Dynamic U.S. Interest Rate ETF",
"value": 97.10232012428442
},
{
"ticker": "BOXX",
"name": "Alpha Architect 1-3 Month Box ETF",
"value": 96.12691734312942
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/adx_14/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 61.72456526397753", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook — the same shape as GET /v2/webhooks/{id}, plus a one-time signing_secret for HMAC verification.
Use scan /v2/scan
The whole market through a WHERE clause — this signal composed freely with any other column. Docs →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=adx_14 IS NOT NULL" \
-d "order=adx_14" -d "columns=adx_14" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:42.419Z",
"query": {
"q": "adx_14 IS NOT NULL",
"limit": 2,
"order": "adx_14",
"dir": "desc",
"fields": [
"adx_14"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "CMBO",
"name": "Wayfinder Dynamic U.S. Interest Rate ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 103.25,
"day_change_pct": 0.0001,
"gap_pct": 0.0001,
"relative_volume": null,
"market_cap": null,
"adx_14": 97.89936637622246
},
{
"ticker": "BENJ",
"name": "Horizon Landmark ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 53.07,
"day_change_pct": -0.0009,
"gap_pct": -0.0002,
"relative_volume": null,
"market_cap": null,
"adx_14": 97.87962585608796
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=adx_14 IS NOT NULL" \
-d "order=adx_14" -d "columns=adx_14" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "adx_14 IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "adx_14",
"dir": "desc",
"fields": [
"adx_14"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "CMBO",
"name": "Wayfinder Dynamic U.S. Interest Rate ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 102.21,
"day_change_pct": 0.009784735812124173,
"gap_pct": 0.009784735812124173,
"relative_volume": null,
"market_cap": null,
"adx_14": 97.10232012428442
},
{
"ticker": "BOXX",
"name": "Alpha Architect 1-3 Month Box ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 116.77,
"day_change_pct": 0,
"gap_pct": 0,
"relative_volume": 0.8289056461225223,
"market_cap": null,
"adx_14": 96.12691734312942
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "adx_14 > 61.72456526397753", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.
Use series /v2/series
Its history over time, on one aligned grid. Docs →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,adx_14" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:44.907Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"adx_14"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"adx_14": 22.701300869283365
},
{
"t": "2026-08-13",
"close": 305.26,
"adx_14": 22.579076091916868
},
{
"t": "2026-08-14",
"close": 305.93,
"adx_14": 22.22341844911387
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"adx_14": 34.42449643237388
},
{
"t": "2026-08-13",
"close": 496.88,
"adx_14": 35.20685250207102
},
{
"t": "2026-08-14",
"close": 495.4,
"adx_14": 36.37191790397995
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.