sma_200
200-day simple moving average.
At a glance
| Type | numeric |
| Group | Technicals |
| Category | Moving averages & VWAP |
| Unit | USD |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | full · since 2004 |
| Nullable | yes — NULL where not applicable |
SMAs, EMAs, and VWAPs, with the distances, above/below states, and crosses they own.
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 →
curl -G "https://api.tickerbot.io/v2/signals/sma_200" \
--data-urlencode "condition=> 448.5355" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:53.598Z",
"signal": "sma_200",
"condition": "> 448.5355",
"universe": null,
"count": 2,
"results": [
{
"ticker": "BRK.A",
"name": "Berkshire Hathaway Inc.",
"value": 737546.7116
},
{
"ticker": "PAVS",
"name": "Paranovus Entertainment Technology Ltd. Class A Ordinary Shares",
"value": 9354.4472
}
]
}curl -G "https://api.tickerbot.io/v2/signals/sma_200" \
--data-urlencode "condition=> 448.5355" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "sma_200",
"condition": "> 448.5355",
"universe": null,
"count": 2,
"results": [
{
"ticker": "BRK.A",
"name": "Berkshire Hathaway Inc.",
"value": 735324.0719499999
},
{
"ticker": "WOK",
"name": "WORK Medical Technology Group LTD Class A Ordinary Shares",
"value": 154060.72119999997
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/sma_200/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 448.5355", "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 →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=sma_200 IS NOT NULL" \
-d "order=sma_200" -d "columns=sma_200" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:55.793Z",
"query": {
"q": "sma_200 IS NOT NULL",
"limit": 2,
"order": "sma_200",
"dir": "desc",
"fields": [
"sma_200"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "BRK.A",
"name": "Berkshire Hathaway Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 747658.72,
"day_change_pct": -0.0105,
"gap_pct": 0,
"relative_volume": null,
"market_cap": 1078304184071,
"sma_200": 737546.7116
},
{
"ticker": "PAVS",
"name": "Paranovus Entertainment Technology Ltd. Class A Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 6.55,
"day_change_pct": -0.0629,
"gap_pct": -0.0186,
"relative_volume": null,
"market_cap": 6032181,
"sma_200": 9354.4472
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=sma_200 IS NOT NULL" \
-d "order=sma_200" -d "columns=sma_200" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "sma_200 IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "sma_200",
"dir": "desc",
"fields": [
"sma_200"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "BRK.A",
"name": "Berkshire Hathaway Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 720840,
"day_change_pct": 0.03330557868442965,
"gap_pct": 0.05550929780738274,
"relative_volume": 1.7831074035453596,
"market_cap": null,
"sma_200": 735324.0719499999
},
{
"ticker": "WOK",
"name": "WORK Medical Technology Group LTD Class A Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 18.9,
"day_change_pct": -19.57446808510639,
"gap_pct": -2.127659574468085,
"relative_volume": 6.514390302511088,
"market_cap": null,
"sma_200": 154060.72119999997
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "sma_200 > 448.5355", "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 →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,sma_200" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:58.496Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"sma_200"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"sma_200": 280.0818
},
{
"t": "2026-08-13",
"close": 305.26,
"sma_200": 280.298
},
{
"t": "2026-08-14",
"close": 305.93,
"sma_200": 280.4836
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"sma_200": 432.8609
},
{
"t": "2026-08-13",
"close": 496.88,
"sma_200": 432.6612
},
{
"t": "2026-08-14",
"close": 495.4,
"sma_200": 432.4794
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.