View as markdown
Concepts › SignalsFundamentals Income statement

diluted_eps_ttm

Trailing-12m diluted EPS.

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

At a glance

Typenumeric
GroupFundamentals
CategoryIncome statement
UnitUSD
Update cadencepost-close daily
Intervals1d
Universeall tickers
Historyfull · since 2010
Nullableyes — NULL where not applicable

Income-statement lines as reported, EPS, and their growth rates.

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 with diluted_eps_ttm above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/diluted_eps_ttm" \
  --data-urlencode "condition=> 23.99" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:27.187Z",
 "signal": "diluted_eps_ttm",
 "condition": "> 23.99",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "LRHC",
   "name": "La Rosa Holding Corp. Common Stock",
   "value": 42644.94
  },
  {
   "ticker": "RUBI",
   "name": "Rubico Inc. Common Stock",
   "value": 1715.3
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/diluted_eps_ttm" \
  --data-urlencode "condition=> 23.99" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "signal": "diluted_eps_ttm",
 "condition": "> 23.99",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "MOG.A",
   "name": "Moog Inc.",
   "value": 566332.530120482
  },
  {
   "ticker": "MOG.B",
   "name": "MOOG INC CL B",
   "value": 566332.530120482
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/diluted_eps_ttm/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 23.99", "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, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=diluted_eps_ttm IS NOT NULL" \
  -d "order=diluted_eps_ttm" -d "columns=diluted_eps_ttm" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:30.569Z",
 "query": {
  "q": "diluted_eps_ttm IS NOT NULL",
  "limit": 2,
  "order": "diluted_eps_ttm",
  "dir": "desc",
  "fields": [
   "diluted_eps_ttm"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "LRHC",
   "name": "La Rosa Holding Corp. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 0.59,
   "day_change_pct": -0.0117,
   "gap_pct": -0.0327,
   "relative_volume": null,
   "market_cap": 964800,
   "diluted_eps_ttm": 42644.94
  },
  {
   "ticker": "RUBI",
   "name": "Rubico Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 1.845,
   "day_change_pct": -0.0134,
   "gap_pct": -0.0107,
   "relative_volume": 0.4881,
   "market_cap": 3457414,
   "diluted_eps_ttm": 1715.3
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=diluted_eps_ttm IS NOT NULL" \
  -d "order=diluted_eps_ttm" -d "columns=diluted_eps_ttm" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "diluted_eps_ttm IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "diluted_eps_ttm",
  "dir": "desc",
  "fields": [
   "diluted_eps_ttm"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "MOG.A",
   "name": "Moog Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 316.58,
   "day_change_pct": 4.086799276672697,
   "gap_pct": 0.785796481999028,
   "relative_volume": 0.9834587664894252,
   "market_cap": 131381,
   "diluted_eps_ttm": 566332.530120482
  },
  {
   "ticker": "MOG.B",
   "name": "MOOG INC CL B",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 310.08,
   "day_change_pct": -1.5056222603392444,
   "gap_pct": -2.591957308938431,
   "relative_volume": 0.27991218441273324,
   "market_cap": 128683,
   "diluted_eps_ttm": 566332.530120482
  }
 ]
}
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": "diluted_eps_ttm > 23.99", "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 →

History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,diluted_eps_ttm" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:33.462Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "diluted_eps_ttm"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "diluted_eps_ttm": 8.71
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "diluted_eps_ttm": 8.72
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "diluted_eps_ttm": 8.82
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "diluted_eps_ttm": 17.95
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "diluted_eps_ttm": 17.94
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "diluted_eps_ttm": 18.14
   }
  ]
 }
}

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

Related signals — Income statement