# net_cash_flow_from_investing_activities

Net cash from investing activities (capex, acquisitions). Negative for net spend.

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
- Intervals: 1d
- Universe: all tickers
- History: full · since 2009
- 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 net_cash_flow_from_investing_activities above a cutoff

```bash
curl -G "https://api.tickerbot.io/v2/signals/net_cash_flow_from_investing_activities" \
  --data-urlencode "condition=> 355168000" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:24:46.543Z",
 "signal": "net_cash_flow_from_investing_activities",
 "condition": "> 355168000",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "BNY",
   "name": "Bank of New York Mellon Corporation",
   "value": 38211000000
  },
  {
   "ticker": "BNYpK",
   "name": "The Bank of New York Mellon Corporation Depositary Shares, each representing a 1/4,000th interest in a share of Series K Noncumulative Perpetual Preferred Stock",
   "value": 38211000000
  }
 ]
}
```

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

```bash
curl -G "https://api.tickerbot.io/v2/signals/net_cash_flow_from_investing_activities" \
  --data-urlencode "condition=> 355168000" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-05-20",
 "signal": "net_cash_flow_from_investing_activities",
 "condition": "> 355168000",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "BK",
   "name": "Bank of New York Mellon Corporation",
   "value": 31030000000
  },
  {
   "ticker": "BKpK",
   "name": "The Bank of New York Mellon Corporation Depositary Shares, each representing a 1/4,000th interest in a share of Series K Noncumulative Perpetual Preferred Stock",
   "value": 31030000000
  }
 ]
}
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/net_cash_flow_from_investing_activities/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 355168000", "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=net_cash_flow_from_investing_activities IS NOT NULL" \
  -d "order=net_cash_flow_from_investing_activities" -d "columns=net_cash_flow_from_investing_activities" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:24:50.168Z",
 "query": {
  "q": "net_cash_flow_from_investing_activities IS NOT NULL",
  "limit": 2,
  "order": "net_cash_flow_from_investing_activities",
  "dir": "desc",
  "fields": [
   "net_cash_flow_from_investing_activities"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "BNY",
   "name": "Bank of New York Mellon Corporation",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 164.565,
   "day_change_pct": 0.0081,
   "gap_pct": 0.0003,
   "relative_volume": null,
   "market_cap": 110759016140,
   "net_cash_flow_from_investing_activities": 38211000000
  },
  {
   "ticker": "BNYpK",
   "name": "The Bank of New York Mellon Corporation Depositary Shares, each representing a 1/4,000th interest in a share of Series K Noncumulative Perpetual Preferred Stock",
   "asset_class": "stocks",
   "asset_type": "PFD",
   "price": 24.875,
   "day_change_pct": -0.0038,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "net_cash_flow_from_investing_activities": 38211000000
  }
 ]
}
```

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

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

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

```json
{
 "as_of": "2026-05-20",
 "query": {
  "q": "net_cash_flow_from_investing_activities IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "net_cash_flow_from_investing_activities",
  "dir": "desc",
  "fields": [
   "net_cash_flow_from_investing_activities"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "BK",
   "name": "Bank of New York Mellon Corporation",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 137.16,
   "day_change_pct": 0.6161971830985941,
   "gap_pct": 0.43280516431925137,
   "relative_volume": 0.8191449244144045,
   "market_cap": 97775054640,
   "net_cash_flow_from_investing_activities": 31030000000
  },
  {
   "ticker": "BKpK",
   "name": "The Bank of New York Mellon Corporation Depositary Shares, each representing a 1/4,000th interest in a share of Series K Noncumulative Perpetual Preferred Stock",
   "asset_class": "stocks",
   "asset_type": "PFD",
   "price": 25.6,
   "day_change_pct": 0.5104043973302025,
   "gap_pct": 0.15704750687083904,
   "relative_volume": 0.6789524487536451,
   "market_cap": 18249062400,
   "net_cash_flow_from_investing_activities": 31030000000
  }
 ]
}
```

#### 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": "net_cash_flow_from_investing_activities > 355168000", "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,net_cash_flow_from_investing_activities" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

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

## 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_continuing](https://tickerbot.io/docs/signals/net_cash_flow_continuing.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_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_from_investing_activities · HTML: https://tickerbot.io/docs/signals/net_cash_flow_from_investing_activities/
