# net_cash_flow_continuing

Total cash flow excluding discontinued operations. Rare line item — populated only for companies in active discontinued-ops winddown.

A bigint 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: Cash flow
- Type: bigint
- Unit: USD
- Update cadence: post-close daily
- Universe: all tickers
- History: none — live row only, not historized (no as-of reads for this column)
- 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 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=net_cash_flow_continuing IS NOT NULL" \
  -d "order=net_cash_flow_continuing" -d "columns=net_cash_flow_continuing" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:24:45.875Z",
 "query": {
  "q": "net_cash_flow_continuing IS NOT NULL",
  "limit": 2,
  "order": "net_cash_flow_continuing",
  "dir": "desc",
  "fields": [
   "net_cash_flow_continuing"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 0,
 "results": []
}
```

## Related signals (Cash flow)

- [free_cash_flow](https://tickerbot.io/docs/signals/free_cash_flow.md)
- [net_cash_flow](https://tickerbot.io/docs/signals/net_cash_flow.md)
- [net_cash_flow_from_financing_activities](https://tickerbot.io/docs/signals/net_cash_flow_from_financing_activities.md)
- [net_cash_flow_from_financing_activities_continuing](https://tickerbot.io/docs/signals/net_cash_flow_from_financing_activities_continuing.md)
- [net_cash_flow_from_investing_activities](https://tickerbot.io/docs/signals/net_cash_flow_from_investing_activities.md)
- [net_cash_flow_from_investing_activities_continuing](https://tickerbot.io/docs/signals/net_cash_flow_from_investing_activities_continuing.md)
- [net_cash_flow_from_operating_activities](https://tickerbot.io/docs/signals/net_cash_flow_from_operating_activities.md)
- [net_cash_flow_from_operating_activities_continuing](https://tickerbot.io/docs/signals/net_cash_flow_from_operating_activities_continuing.md)

---

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