View as markdown
Concepts › SignalsTechnicals Trend & direction

minus_di

-DI (14-period): the bearish directional-movement component of the ADX system.

Watch this signal live on real tickers: Open in Explore →

At a glance

Typenumeric
GroupTechnicals
CategoryTrend & direction
Update cadencepost-close daily
Intervals1d
Universeall tickers
Historyfull · since 2003
Nullableyes — 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 →

Live — every ticker with minus_di above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/minus_di" \
  --data-urlencode "condition=> 55.218969792223646" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:24:41.629Z",
 "signal": "minus_di",
 "condition": "> 55.218969792223646",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "IQMM",
   "name": "ProShares GENIUS Money Market ETF",
   "value": 81.22787771598777
  },
  {
   "ticker": "BIOT",
   "name": "Instinct Bio Technical Company Holdings Inc. Ordinary Shares",
   "value": 80.36349187658575
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/minus_di" \
  --data-urlencode "condition=> 55.218969792223646" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "signal": "minus_di",
 "condition": "> 55.218969792223646",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "GIGGU",
   "name": "GigCapital7 Corp. Unit",
   "value": 73.11661588675075
  },
  {
   "ticker": "DHY",
   "name": "Credit Suisse High Yield Credit Fund",
   "value": 70.67411327929523
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/minus_di/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 55.218969792223646", "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 →

Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=minus_di IS NOT NULL" \
  -d "order=minus_di" -d "columns=minus_di" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:24:44.361Z",
 "query": {
  "q": "minus_di IS NOT NULL",
  "limit": 2,
  "order": "minus_di",
  "dir": "desc",
  "fields": [
   "minus_di"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "IQMM",
   "name": "ProShares GENIUS Money Market ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 100.125,
   "day_change_pct": 0.0001,
   "gap_pct": 0.0002,
   "relative_volume": null,
   "market_cap": null,
   "minus_di": 81.22787771598777
  },
  {
   "ticker": "BIOT",
   "name": "Instinct Bio Technical Company Holdings Inc. Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 0.38,
   "day_change_pct": 0.0354,
   "gap_pct": -0.0136,
   "relative_volume": null,
   "market_cap": null,
   "minus_di": 80.36349187658575
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=minus_di IS NOT NULL" \
  -d "order=minus_di" -d "columns=minus_di" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "minus_di IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "minus_di",
  "dir": "desc",
  "fields": [
   "minus_di"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "GIGGU",
   "name": "GigCapital7 Corp. Unit",
   "asset_class": "stocks",
   "asset_type": "UNIT",
   "price": 5.97,
   "day_change_pct": -44.361602982292645,
   "gap_pct": -22.180801491146326,
   "relative_volume": null,
   "market_cap": null,
   "minus_di": 73.11661588675075
  },
  {
   "ticker": "DHY",
   "name": "Credit Suisse High Yield Credit Fund",
   "asset_class": "stocks",
   "asset_type": "FUND",
   "price": 1.78,
   "day_change_pct": 0.56497175141243,
   "gap_pct": 0,
   "relative_volume": 0.31839277923103304,
   "market_cap": null,
   "minus_di": 70.67411327929523
  }
 ]
}
Subscribe — webhook on a market-wide condition
curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"q": "minus_di > 55.218969792223646", "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 →

History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,minus_di" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:24:46.051Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "minus_di"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "minus_di": 31.878588066193636
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "minus_di": 30.534641659618952
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "minus_di": 29.829750444861347
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "minus_di": 14.255347467936266
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "minus_di": 14.575790625577849
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "minus_di": 13.246251752631792
   }
  ]
 }
}

Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.

Related signals — Trend & direction