# earnings_tomorrow

Earnings reported in 1 calendar day. Pair with `earnings_report_time` to know BMO vs. AMC.

A boolean signal (flag) column on the Tickerbot computed state table (20,798+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

Definition: `days_to_earnings = 1`

- Group: Events
- Category: Earnings
- Type: state
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: full · since 2003
- Firing: continuous

## Query it

Every applicable form factor, grouped by endpoint family. 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. (https://tickerbot.io/docs/endpoints/signals.md)

#### Live — every ticker where it fires now

```bash
curl "https://api.tickerbot.io/v2/signals/earnings_tomorrow" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:38.593Z",
 "signal": "earnings_tomorrow",
 "condition": null,
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "AACG",
   "name": "ATA Creativity Global American Depositary Shares",
   "value": true
  },
  {
   "ticker": "AAPG",
   "name": "Ascentage Pharma Group International American Depository Shares",
   "value": true
  }
 ]
}
```

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

```bash
curl "https://api.tickerbot.io/v2/signals/earnings_tomorrow?asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-05-20",
 "signal": "earnings_tomorrow",
 "condition": null,
 "universe": null,
 "count": 0,
 "results": []
}
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/earnings_tomorrow/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. (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, filtered on this signal

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=earnings_tomorrow" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:41.430Z",
 "query": {
  "q": "earnings_tomorrow",
  "limit": 2,
  "order": "day_change_pct",
  "dir": "desc",
  "fields": [],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "UFI",
   "name": "UNIFI, Inc. New",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 8.055,
   "day_change_pct": 0.2488,
   "gap_pct": 0.0946,
   "relative_volume": 4.6212,
   "market_cap": 119887788
  },
  {
   "ticker": "ARAY",
   "name": "Accuray Incorporated",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 0.331,
   "day_change_pct": 0.1898,
   "gap_pct": 0.0065,
   "relative_volume": null,
   "market_cap": 33226383
  }
 ]
}
```

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

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=earnings_tomorrow" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-05-20",
 "query": {
  "q": "earnings_tomorrow",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "day_change_pct",
  "dir": "desc",
  "fields": [],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 0,
 "results": []
}
```

#### 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": "earnings_tomorrow", "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. (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,earnings_tomorrow" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:44.170Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "earnings_tomorrow"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "earnings_tomorrow": false
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "earnings_tomorrow": false
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "earnings_tomorrow": false
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "earnings_tomorrow": false
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "earnings_tomorrow": false
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "earnings_tomorrow": false
   }
  ]
 }
}
```

### Use events — `/v2/events`

The flag as a timeline: each edge as a point event, and the spans it stayed true. (https://tickerbot.io/docs/endpoints/events.md)

#### Firings — every enter edge as a point event

```bash
curl -G "https://api.tickerbot.io/v2/events" \
  -d "kind=signal" -d "signal=earnings_tomorrow" -d "transition=enter" -d "since=2026-01-10" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:44.339Z",
 "query": {
  "kind": "signal",
  "tickers": null,
  "universe": null,
  "since": "2026-01-10T00:00:00.000Z",
  "until": null,
  "limit": 2,
  "signal": "earnings_tomorrow",
  "transition": "enter"
 },
 "count": 2,
 "results": [
  {
   "ticker": "ZENA",
   "ts": "2026-08-10T20:00:00.000Z",
   "kind": "signal",
   "payload": {
    "signal": "earnings_tomorrow",
    "transition": "enter",
    "price": 1.695,
    "definition_version": 6
   }
  },
  {
   "ticker": "ZBIO",
   "ts": "2026-08-10T20:00:00.000Z",
   "kind": "signal",
   "payload": {
    "signal": "earnings_tomorrow",
    "transition": "enter",
    "price": 31.99,
    "definition_version": 6
   }
  }
 ]
}
```

#### Spans — when it was true for one ticker (ZENA)

```bash
curl "https://api.tickerbot.io/v2/signals/earnings_tomorrow/ZENA/events" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:44.495Z",
 "ticker": "ZENA",
 "signal": "earnings_tomorrow",
 "count": 1,
 "events": [
  {
   "started_at": "2026-08-10T20:00:00.000Z",
   "ended_at": "2026-08-13T20:00:00.000Z",
   "start_price": 1.695,
   "end_price": 1.895,
   "definition_version": 6
  }
 ]
}
```

## Related signals (Earnings)

- [days_to_earnings](https://tickerbot.io/docs/signals/days_to_earnings.md)
- [earnings_approaching](https://tickerbot.io/docs/signals/earnings_approaching.md)
- [earnings_beat_streak](https://tickerbot.io/docs/signals/earnings_beat_streak.md)
- [earnings_date](https://tickerbot.io/docs/signals/earnings_date.md)
- [earnings_fiscal_quarter](https://tickerbot.io/docs/signals/earnings_fiscal_quarter.md)
- [earnings_next_week](https://tickerbot.io/docs/signals/earnings_next_week.md)
- [earnings_published](https://tickerbot.io/docs/signals/earnings_published.md)
- [earnings_report_time](https://tickerbot.io/docs/signals/earnings_report_time.md)
- [earnings_this_week](https://tickerbot.io/docs/signals/earnings_this_week.md)
- [earnings_today](https://tickerbot.io/docs/signals/earnings_today.md)
- [last_earnings_surprise](https://tickerbot.io/docs/signals/last_earnings_surprise.md)
- [last_earnings_surprise_pct](https://tickerbot.io/docs/signals/last_earnings_surprise_pct.md)
- [last_reported_eps](https://tickerbot.io/docs/signals/last_reported_eps.md)
- [recently_reported_earnings](https://tickerbot.io/docs/signals/recently_reported_earnings.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=earnings_tomorrow · HTML: https://tickerbot.io/docs/signals/earnings_tomorrow/
