# plus_di

+DI (14-period): the bullish 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 plus_di above a cutoff

```bash
curl -G "https://api.tickerbot.io/v2/signals/plus_di" \
  --data-urlencode "condition=> 65.34713882241522" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:25:12.938Z",
 "signal": "plus_di",
 "condition": "> 65.34713882241522",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "RCLY",
   "name": "Reckoner BBB-B CLO Annual ETF",
   "value": 90.52215115119114
  },
  {
   "ticker": "CMBO",
   "name": "Wayfinder Dynamic U.S. Interest Rate ETF",
   "value": 85.63330779517953
  }
 ]
}
```

#### As-of — the same read at a past date

```bash
curl -G "https://api.tickerbot.io/v2/signals/plus_di" \
  --data-urlencode "condition=> 65.34713882241522" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-05-20",
 "signal": "plus_di",
 "condition": "> 65.34713882241522",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "TOMDF",
   "name": "Todos Medical Ltd",
   "value": 100
  },
  {
   "ticker": "RAAY",
   "name": "Reckoner Yield Enhanced AAA CLO Annual ETF",
   "value": 89.63000461785039
  }
 ]
}
```

#### Subscribe — webhook when a ticker starts matching

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/plus_di/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 65.34713882241522", "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=plus_di IS NOT NULL" \
  -d "order=plus_di" -d "columns=plus_di" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:25:16.782Z",
 "query": {
  "q": "plus_di IS NOT NULL",
  "limit": 2,
  "order": "plus_di",
  "dir": "desc",
  "fields": [
   "plus_di"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "RCLY",
   "name": "Reckoner BBB-B CLO Annual ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 102.769,
   "day_change_pct": 0.0012,
   "gap_pct": 0.0003,
   "relative_volume": null,
   "market_cap": null,
   "plus_di": 90.52215115119114
  },
  {
   "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,
   "plus_di": 85.63330779517953
  }
 ]
}
```

#### As-of — the same scan at a past date

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=plus_di IS NOT NULL" \
  -d "order=plus_di" -d "columns=plus_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": "plus_di IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "plus_di",
  "dir": "desc",
  "fields": [
   "plus_di"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "TOMDF",
   "name": "Todos Medical Ltd",
   "asset_class": "stocks",
   "asset_type": null,
   "price": 0,
   "day_change_pct": null,
   "gap_pct": null,
   "relative_volume": 0.04939770344926537,
   "market_cap": null,
   "plus_di": 100
  },
  {
   "ticker": "RAAY",
   "name": "Reckoner Yield Enhanced AAA CLO Annual ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 101.475,
   "day_change_pct": 0,
   "gap_pct": 0,
   "relative_volume": null,
   "market_cap": null,
   "plus_di": 89.63000461785039
  }
 ]
}
```

#### 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": "plus_di > 65.34713882241522", "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,plus_di" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:25:19.029Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "plus_di"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "plus_di": 20.621572973469352
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "plus_di": 19.957452146190636
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "plus_di": 20.834153071025895
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "plus_di": 41.267977290372656
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "plus_di": 38.84962318202401
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "plus_di": 38.28458005027072
   }
  ]
 }
}
```

## 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)
- [minus_di](https://tickerbot.io/docs/signals/minus_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=plus_di · HTML: https://tickerbot.io/docs/signals/plus_di/
