# diluted_eps_ttm

Trailing-12m diluted EPS.

A numeric signal 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.

- Group: Fundamentals
- Category: Income statement
- Type: numeric
- Unit: USD
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: full · since 2010
- Nullable: yes

## 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 with diluted_eps_ttm above a cutoff

```bash
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):

```json
{
 "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

```bash
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):

```json
{
 "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

```bash
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. (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
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):

```json
{
 "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

```bash
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):

```json
{
 "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

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

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

```json
{
 "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
   }
  ]
 }
}
```

## Related signals (Income statement)

- [basic_earnings_per_share](https://tickerbot.io/docs/signals/basic_earnings_per_share.md)
- [benefits_costs_expenses](https://tickerbot.io/docs/signals/benefits_costs_expenses.md)
- [cost_of_revenue](https://tickerbot.io/docs/signals/cost_of_revenue.md)
- [costs_and_expenses](https://tickerbot.io/docs/signals/costs_and_expenses.md)
- [earnings_growth_yoy](https://tickerbot.io/docs/signals/earnings_growth_yoy.md)
- [ebitda](https://tickerbot.io/docs/signals/ebitda.md)
- [eps](https://tickerbot.io/docs/signals/eps.md)
- [gross_profit](https://tickerbot.io/docs/signals/gross_profit.md)
- [gross_profit_ttm](https://tickerbot.io/docs/signals/gross_profit_ttm.md)
- [income_loss_from_continuing_operations_after_tax](https://tickerbot.io/docs/signals/income_loss_from_continuing_operations_after_tax.md)
- [income_loss_from_continuing_operations_before_tax](https://tickerbot.io/docs/signals/income_loss_from_continuing_operations_before_tax.md)
- [income_tax_expense_benefit](https://tickerbot.io/docs/signals/income_tax_expense_benefit.md)
- [income_tax_expense_benefit_deferred](https://tickerbot.io/docs/signals/income_tax_expense_benefit_deferred.md)
- [net_income_loss](https://tickerbot.io/docs/signals/net_income_loss.md)
- [net_income_loss_attributable_to_noncontrolling_interest](https://tickerbot.io/docs/signals/net_income_loss_attributable_to_noncontrolling_interest.md)

---

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