View as markdown
Concepts › SignalsPrice action Intraday momentum

morning_strength

First two hours of session net positive.

Watch this signal live on real tickers: Open in Explore →

At a glance

Definition
close_1130 > open_0930
Typestate (boolean)
GroupPrice action
CategoryIntraday momentum
Update cadence1 min · mkt hrs
Universeall tickers
Historyintraday state only — as-of by timestamp at interval=1h
Firingsticky

Directional strength read straight off the session's bars: drives, drifts, spikes, rallies, exhaustion.

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 →

Live — every ticker where it fires now
curl "https://api.tickerbot.io/v2/signals/morning_strength" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:24:45.152Z",
 "signal": "morning_strength",
 "condition": null,
 "universe": null,
 "count": 0,
 "results": []
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/morning_strength/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"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 →

Live — the whole market, filtered on this signal
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=morning_strength" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:24:45.422Z",
 "query": {
  "q": "morning_strength",
  "limit": 2,
  "order": "day_change_pct",
  "dir": "desc",
  "fields": [],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 0,
 "results": []
}
As-of — a past intraday moment (hourly state)
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=morning_strength" \
  -d "asof=2026-05-20T17:45:00Z" -d "interval=1h" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20T17:45:00Z",
 "query": {
  "q": "morning_strength",
  "asof": "2026-05-20T17:45:00Z",
  "interval": "1h",
  "limit": 2,
  "order": "day_change_pct",
  "dir": "desc",
  "fields": [],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "KCCA",
   "name": "KraneShares California Carbon Allowance Strategy ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 15.77,
   "day_change_pct": 1.7347156008283307,
   "gap_pct": -0.3941655753462639,
   "relative_volume": 0.3207380298871607,
   "market_cap": null
  },
  {
   "ticker": "MDYG",
   "name": "State Street SPDR S&P 400 Mid Cap Growth ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 105.21,
   "day_change_pct": 1.6325347758887152,
   "gap_pct": 0.7727975270479107,
   "relative_volume": 0.5458250733486638,
   "market_cap": null
  }
 ]
}
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": "morning_strength", "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 events /v2/events

The flag as a timeline: each edge as a point event, and the spans it stayed true. Docs →

Firings — every enter edge as a point event
curl -G "https://api.tickerbot.io/v2/events" \
  -d "kind=signal" -d "signal=morning_strength" -d "transition=enter" -d "since=2026-01-10" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:24:47.058Z",
 "query": {
  "kind": "signal",
  "tickers": null,
  "universe": null,
  "since": "2026-01-10T00:00:00.000Z",
  "until": null,
  "limit": 2,
  "signal": "morning_strength",
  "transition": "enter"
 },
 "count": 2,
 "results": [
  {
   "ticker": "XYLG",
   "ts": "2026-08-17T15:46:39.793Z",
   "kind": "signal",
   "payload": {
    "signal": "morning_strength",
    "transition": "enter",
    "price": 29.706,
    "definition_version": 6
   }
  },
  {
   "ticker": "XSOE",
   "ts": "2026-08-17T15:46:39.793Z",
   "kind": "signal",
   "payload": {
    "signal": "morning_strength",
    "transition": "enter",
    "price": 48.245,
    "definition_version": 6
   }
  }
 ]
}
Spans — when it was true for one ticker (XYLG)
curl "https://api.tickerbot.io/v2/signals/morning_strength/XYLG/events" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:24:47.188Z",
 "ticker": "XYLG",
 "signal": "morning_strength",
 "count": 2,
 "events": [
  {
   "started_at": "2026-08-17T15:46:39.793Z",
   "ended_at": "2026-08-17T15:50:56.630Z",
   "start_price": 29.706,
   "end_price": 29.706,
   "definition_version": 6
  },
  {
   "started_at": "2026-08-12T15:30:54.865Z",
   "ended_at": "2026-08-12T15:32:39.957Z",
   "start_price": 29.641,
   "end_price": 29.644,
   "definition_version": 6
  }
 ]
}

Same grammar on scan and webhooks. This column lives in intraday state: ?asof= reads carry it at interval=1h with a timestamp, not at daily resolution.

Related signals — Intraday momentum