View as markdown
Concepts › SignalsFundamentals Margins & ratios

return_on_equity_ttm

Trailing-12m return on equity.

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

At a glance

Typenumeric
GroupFundamentals
CategoryMargins & ratios
Update cadencepost-close daily
Intervals1d
Universeall tickers
Historyfull · since 2010
Nullableyes — NULL where not applicable

Ratios computed entirely from statement lines — margins, returns, liquidity, leverage. No market price in the formula.

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 return_on_equity_ttm above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/return_on_equity_ttm" \
  --data-urlencode "condition=> 0.889" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:25:37.860Z",
 "signal": "return_on_equity_ttm",
 "condition": "> 0.889",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "XXI",
   "name": "Twenty One Capital, Inc.",
   "value": 4.222
  },
  {
   "ticker": "UZD",
   "name": "Array Digital Infrastructure, Inc. 6.250% Senior Notes due 2069",
   "value": 3.483
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/return_on_equity_ttm" \
  --data-urlencode "condition=> 0.889" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "signal": "return_on_equity_ttm",
 "condition": "> 0.889",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "GOCO",
   "name": "GoHealth, Inc. Class A Common Stock",
   "value": 61.42544875506659
  },
  {
   "ticker": "MNTS",
   "name": "Momentus Inc. Class A Common Stock",
   "value": 51.231988472622476
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/return_on_equity_ttm/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 0.889", "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=return_on_equity_ttm IS NOT NULL" \
  -d "order=return_on_equity_ttm" -d "columns=return_on_equity_ttm" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:25:40.450Z",
 "query": {
  "q": "return_on_equity_ttm IS NOT NULL",
  "limit": 2,
  "order": "return_on_equity_ttm",
  "dir": "desc",
  "fields": [
   "return_on_equity_ttm"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "XXI",
   "name": "Twenty One Capital, Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 4.875,
   "day_change_pct": 0.0199,
   "gap_pct": -0.0021,
   "relative_volume": 0.7814,
   "market_cap": 2688139221,
   "return_on_equity_ttm": 4.222
  },
  {
   "ticker": "UZD",
   "name": "Array Digital Infrastructure, Inc. 6.250% Senior Notes due 2069",
   "asset_class": "stocks",
   "asset_type": "SP",
   "price": 18.955,
   "day_change_pct": 0.0056,
   "gap_pct": 0.0068,
   "relative_volume": 1.116,
   "market_cap": null,
   "return_on_equity_ttm": 3.483
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=return_on_equity_ttm IS NOT NULL" \
  -d "order=return_on_equity_ttm" -d "columns=return_on_equity_ttm" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "return_on_equity_ttm IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "return_on_equity_ttm",
  "dir": "desc",
  "fields": [
   "return_on_equity_ttm"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "GOCO",
   "name": "GoHealth, Inc. Class A Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 0.626,
   "day_change_pct": -16.53333333333333,
   "gap_pct": -5.200000000000005,
   "relative_volume": 7.022743257328149,
   "market_cap": 8849136,
   "return_on_equity_ttm": 61.42544875506659
  },
  {
   "ticker": "MNTS",
   "name": "Momentus Inc. Class A Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 6.22,
   "day_change_pct": 7.056798623063686,
   "gap_pct": -1.5490533562822695,
   "relative_volume": 0.5653249661149822,
   "market_cap": 63922561,
   "return_on_equity_ttm": 51.231988472622476
  }
 ]
}
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": "return_on_equity_ttm > 0.889", "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,return_on_equity_ttm" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:25:42.623Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "return_on_equity_ttm"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "return_on_equity_ttm": 1.488
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "return_on_equity_ttm": 1.488
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "return_on_equity_ttm": 1.488
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "return_on_equity_ttm": 0.34
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "return_on_equity_ttm": 0.34
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "return_on_equity_ttm": 0.34
   }
  ]
 }
}

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

Related signals — Margins & ratios