View as markdown

from_sma_200_pct

Percent distance from the 200-day SMA. Negative when price is below the average.

metadata
typenumeric
unit%
cadencepost-close daily
intervals1m/1h/1d
universeall tickers
historyfull · since 2004
nullableyes — NULL where not applicable

Swap YOUR_KEY for a key from /dashboard/keys. Responses are real captures from 2026-09-08, trimmed.

Every ticker matching this signal /v2/signals/{signal}

Live — every ticker with from_sma_200_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/from_sma_200_pct" \
  --data-urlencode "condition=> 72.73051014743986" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:08:19.917Z",
 "signal": "from_sma_200_pct",
 "condition": "> 72.73051014743986",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "TANH",
   "name": "Tantech Holdings Ltd. Class A Common Shares",
   "value": 2599.6305768684288
  },
  {
   "ticker": "CURX",
   "name": "Curanex Pharmaceuticals Inc Common Stock",
   "value": 636.6236846005633
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/from_sma_200_pct" \
  --data-urlencode "condition=> 72.73051014743986" \
  -d "asof=2026-06-10" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "signal": "from_sma_200_pct",
 "condition": "> 72.73051014743986",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "STAK",
   "name": "STAK Inc. Class A Ordinary Shares",
   "value": 763.3581900003074
  },
  {
   "ticker": "ASTC",
   "name": "Astrotech Corporation (DE) Common Stock",
   "value": 359.83666793153463
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/from_sma_200_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 72.73051014743986", "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

Live — the whole market, ranked by this column
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "from_sma_200_pct IS NOT NULL", "order": "from_sma_200_pct", "columns": "from_sma_200_pct" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:08:22.651Z",
 "query": {
  "q": "from_sma_200_pct IS NOT NULL",
  "limit": 2,
  "order": "from_sma_200_pct",
  "dir": "desc",
  "fields": [
   "from_sma_200_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_200_pct": 2599.6305768684288
  },
  {
   "ticker": "CURX",
   "name": "Curanex Pharmaceuticals Inc Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 4.97,
   "change_1d_pct": 4.852320675105475,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": 7919617,
   "from_sma_200_pct": 636.6236846005633
  }
 ]
}
As-of — the same scan at a past date
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "from_sma_200_pct IS NOT NULL", "order": "from_sma_200_pct", "columns": "from_sma_200_pct", "asof": "2026-06-10" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "query": {
  "q": "from_sma_200_pct IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "from_sma_200_pct",
  "dir": "desc",
  "fields": [
   "from_sma_200_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "STAK",
   "name": "STAK Inc. Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 7.58,
   "change_1d_pct": 34.159292035398224,
   "gap_pct": 14.690265486725664,
   "relative_volume": 0.26001597257901865,
   "market_cap": null,
   "from_sma_200_pct": 763.3581900003074
  },
  {
   "ticker": "ASTC",
   "name": "Astrotech Corporation (DE) Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 24,
   "change_1d_pct": -6.176700547302573,
   "gap_pct": -6.020328381548082,
   "relative_volume": 0.09602464563666202,
   "market_cap": null,
   "from_sma_200_pct": 359.83666793153463
  }
 ]
}
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": "from_sma_200_pct > 72.73051014743986", "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

History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,from_sma_200_pct" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:08:26.088Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "from_sma_200_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "from_sma_200_pct": 14.666349201990775
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "from_sma_200_pct": 15.677061187428032
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "from_sma_200_pct": 13.141959829907002
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "from_sma_200_pct": 15.21163056144726
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "from_sma_200_pct": 18.28865001794186
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "from_sma_200_pct": 16.28259142025991
   }
  ]
 }
}

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

Related signals — Moving averages & VWAP