rsi_7
Relative Strength Index over 7 periods - a faster, more sensitive RSI. Range 0-100.
At a glance
| Type | numeric |
| Group | Technicals |
| Category | Oscillators |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | full · since 2003 |
| Nullable | yes — NULL where not applicable |
Bounded momentum oscillators: RSI and stochastics, with their threshold flags.
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/rsi_7" \
--data-urlencode "condition=> 86.55791422347633" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:43.541Z",
"signal": "rsi_7",
"condition": "> 86.55791422347633",
"universe": null,
"count": 2,
"results": [
{
"ticker": "FTRA.WS",
"name": "FutureCorp Space Acquisition 1 Redeemable warrants, each whole warrant exercisable for one Class A ordinary share at an exercise price of $11.50",
"value": 100
},
{
"ticker": "TOMDF",
"name": "Todos Medical Ltd",
"value": 100
}
]
}curl -G "https://api.tickerbot.io/v2/signals/rsi_7" \
--data-urlencode "condition=> 86.55791422347633" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "rsi_7",
"condition": "> 86.55791422347633",
"universe": null,
"count": 2,
"results": [
{
"ticker": "CLOO",
"name": "NYLI Investment Grade CLO ETF",
"value": 100
},
{
"ticker": "BOXX",
"name": "Alpha Architect 1-3 Month Box ETF",
"value": 98.39170518599131
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/rsi_7/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 86.55791422347633", "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=rsi_7 IS NOT NULL" \
-d "order=rsi_7" -d "columns=rsi_7" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:46.494Z",
"query": {
"q": "rsi_7 IS NOT NULL",
"limit": 2,
"order": "rsi_7",
"dir": "desc",
"fields": [
"rsi_7"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "FTRA.WS",
"name": "FutureCorp Space Acquisition 1 Redeemable warrants, each whole warrant exercisable for one Class A ordinary share at an exercise price of $11.50",
"asset_class": "stocks",
"asset_type": "WARRANT",
"price": 205.7752,
"day_change_pct": 347.7715,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"rsi_7": 100
},
{
"ticker": "TOMDF",
"name": "Todos Medical Ltd",
"asset_class": "stocks",
"asset_type": null,
"price": null,
"day_change_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"rsi_7": 100
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=rsi_7 IS NOT NULL" \
-d "order=rsi_7" -d "columns=rsi_7" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "rsi_7 IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "rsi_7",
"dir": "desc",
"fields": [
"rsi_7"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "CLOO",
"name": "NYLI Investment Grade CLO ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 25.125,
"day_change_pct": 0,
"gap_pct": 0,
"relative_volume": null,
"market_cap": null,
"rsi_7": 100
},
{
"ticker": "BOXX",
"name": "Alpha Architect 1-3 Month Box ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 116.77,
"day_change_pct": 0,
"gap_pct": 0,
"relative_volume": 0.8289056461225223,
"market_cap": null,
"rsi_7": 98.39170518599131
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "rsi_7 > 86.55791422347633", "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,rsi_7" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:48.046Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"rsi_7"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"rsi_7": 29.26165169528258
},
{
"t": "2026-08-13",
"close": 305.26,
"rsi_7": 36.642065896763064
},
{
"t": "2026-08-14",
"close": 305.93,
"rsi_7": 38.28752492955659
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"rsi_7": 69.25468800167559
},
{
"t": "2026-08-13",
"close": 496.88,
"rsi_7": 71.51728335397225
},
{
"t": "2026-08-14",
"close": 495.4,
"rsi_7": 69.18701347373351
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.