# minus_di

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

A numeric signal column on the Tickerbot computed state table (20,798+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: Technicals
- Category: Trend & direction
- Type: numeric
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: full · since 2003
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. 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. (https://tickerbot.io/docs/endpoints/signals.md)

#### Live — every ticker with minus_di above a cutoff

```bash
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):

```json
{
 "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

```bash
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):

```json
{
 "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

```bash
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. (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
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):

```json
{
 "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

```bash
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):

```json
{
 "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

```bash
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. (https://tickerbot.io/docs/endpoints/series.md)

#### History — the column on an aligned time grid

```bash
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):

```json
{
 "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
   }
  ]
 }
}
```

## Related signals (Trend & direction)

- [adx_14](https://tickerbot.io/docs/signals/adx_14.md)
- [in_downtrend](https://tickerbot.io/docs/signals/in_downtrend.md)
- [in_uptrend](https://tickerbot.io/docs/signals/in_uptrend.md)
- [macd_above_signal](https://tickerbot.io/docs/signals/macd_above_signal.md)
- [macd_below_signal](https://tickerbot.io/docs/signals/macd_below_signal.md)
- [macd_histogram](https://tickerbot.io/docs/signals/macd_histogram.md)
- [macd_line](https://tickerbot.io/docs/signals/macd_line.md)
- [macd_signal](https://tickerbot.io/docs/signals/macd_signal.md)
- [plus_di](https://tickerbot.io/docs/signals/plus_di.md)
- [trend_long](https://tickerbot.io/docs/signals/trend_long.md)
- [trend_medium](https://tickerbot.io/docs/signals/trend_medium.md)
- [trend_reversal_bearish_today](https://tickerbot.io/docs/signals/trend_reversal_bearish_today.md)
- [trend_reversal_bullish_today](https://tickerbot.io/docs/signals/trend_reversal_bullish_today.md)
- [trend_short](https://tickerbot.io/docs/signals/trend_short.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=minus_di · HTML: https://tickerbot.io/docs/signals/minus_di/
