# from_sma_20_pct

Percent difference between current close and `sma_20`. Continuous version of the `above_sma_20` boolean.

A numeric signal column on the Tickerbot computed state table (20,964+ 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: Moving averages & VWAP
- Type: numeric
- Unit: %
- Update cadence: post-close daily
- Intervals: 1m/1h/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-09-08 and trimmed; your run's values and dates will differ.

### Every ticker matching this signal — `/v2/signals/{signal}` (https://tickerbot.io/docs/endpoints/signals.md)

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

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

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

```json
{
 "as_of": "2026-09-08T13:08:19.921Z",
 "signal": "from_sma_20_pct",
 "condition": "> 33.14736207487374",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "TANH",
   "name": "Tantech Holdings Ltd. Class A Common Shares",
   "value": 1384.3257704454081
  },
  {
   "ticker": "CLGN",
   "name": "CollPlant Biotechnologies Ltd Ordinary Shares",
   "value": 614.2484750534385
  }
 ]
}
```

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

```bash
curl -G "https://api.tickerbot.io/v2/signals/from_sma_20_pct" \
  --data-urlencode "condition=> 33.14736207487374" \
  -d "asof=2026-06-10" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-06-10",
 "signal": "from_sma_20_pct",
 "condition": "> 33.14736207487374",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "CPOP",
   "name": "Pop Culture Group Co., Ltd Class A Ordinary Shares",
   "value": 338.3435228976826
  },
  {
   "ticker": "SDOT",
   "name": "Sadot Group Inc. Common Stock",
   "value": 300.00569200556583
  }
 ]
}
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/from_sma_20_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 33.14736207487374", "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.

### The whole market, filtered on it — `/v2/scan` (https://tickerbot.io/docs/endpoints/scan.md)

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

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "from_sma_20_pct IS NOT NULL", "order": "from_sma_20_pct", "columns": "from_sma_20_pct" }'
```

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

```json
{
 "as_of": "2026-09-08T13:08:26.411Z",
 "query": {
  "q": "from_sma_20_pct IS NOT NULL",
  "limit": 2,
  "order": "from_sma_20_pct",
  "dir": "desc",
  "fields": [
   "from_sma_20_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "TANH",
   "name": "Tantech Holdings Ltd. Class A Common Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 20.14,
   "change_1d_pct": 4.950495049504947,
   "gap_pct": -9.33,
   "relative_volume": null,
   "market_cap": 14601921,
   "from_sma_20_pct": 1384.3257704454081
  },
  {
   "ticker": "CLGN",
   "name": "CollPlant Biotechnologies Ltd Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 3.425,
   "change_1d_pct": 0.38100820633059496,
   "gap_pct": -2.99,
   "relative_volume": null,
   "market_cap": 6712414,
   "from_sma_20_pct": 614.2484750534385
  }
 ]
}
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "from_sma_20_pct IS NOT NULL", "order": "from_sma_20_pct", "columns": "from_sma_20_pct", "asof": "2026-06-10" }'
```

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

```json
{
 "as_of": "2026-06-10",
 "query": {
  "q": "from_sma_20_pct IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "from_sma_20_pct",
  "dir": "desc",
  "fields": [
   "from_sma_20_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "CPOP",
   "name": "Pop Culture Group Co., Ltd Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 15.2,
   "change_1d_pct": 322.2222222222222,
   "gap_pct": 41.66666666666665,
   "relative_volume": 20.854878151407174,
   "market_cap": null,
   "from_sma_20_pct": 338.3435228976826
  },
  {
   "ticker": "SDOT",
   "name": "Sadot Group Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 28.11,
   "change_1d_pct": 108.22222222222221,
   "gap_pct": 6.0000000000000036,
   "relative_volume": 0.9642612711839194,
   "market_cap": 21802693,
   "from_sma_20_pct": 300.00569200556583
  }
 ]
}
```

#### 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": "from_sma_20_pct > 33.14736207487374", "target_url": "https://example.com/hooks/tickerbot"}'
```

Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.

### Its history — `/v2/series` (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,from_sma_20_pct" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-09-08T13:08:30.189Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "from_sma_20_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "from_sma_20_pct": 4.124140543648458
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "from_sma_20_pct": 4.880772401869621
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "from_sma_20_pct": 2.5486377502728113
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "from_sma_20_pct": 0.29422277328680974
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "from_sma_20_pct": 2.8665307550196153
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "from_sma_20_pct": 1.1001609462780775
   }
  ]
 }
}
```

## Related signals (Moving averages & VWAP)

- [above_sma_10](https://tickerbot.io/docs/signals/above_sma_10.md)
- [above_sma_20](https://tickerbot.io/docs/signals/above_sma_20.md)
- [above_sma_200](https://tickerbot.io/docs/signals/above_sma_200.md)
- [above_sma_50](https://tickerbot.io/docs/signals/above_sma_50.md)
- [above_vwap](https://tickerbot.io/docs/signals/above_vwap.md)
- [above_vwap_minute](https://tickerbot.io/docs/signals/above_vwap_minute.md)
- [day_vwap](https://tickerbot.io/docs/signals/day_vwap.md)
- [death_cross](https://tickerbot.io/docs/signals/death_cross.md)
- [death_regime](https://tickerbot.io/docs/signals/death_regime.md)
- [ema_12](https://tickerbot.io/docs/signals/ema_12.md)
- [ema_21](https://tickerbot.io/docs/signals/ema_21.md)
- [ema_26](https://tickerbot.io/docs/signals/ema_26.md)
- [ema_9](https://tickerbot.io/docs/signals/ema_9.md)
- [from_sma_10_pct](https://tickerbot.io/docs/signals/from_sma_10_pct.md)
- [from_sma_100_pct](https://tickerbot.io/docs/signals/from_sma_100_pct.md)

---

Full catalog: https://tickerbot.io/docs/signals/catalog.md · Schema: https://tickerbot.io/docs/schema.md · HTML: https://tickerbot.io/docs/signals/from_sma_20_pct/
