# Crypto Multi-Timeframe Momentum Scanner (`gochujang/crypto-momentum-scanner`) Actor

Scan 1000 cryptocurrencies across 9 timeframes (1m to 1y) with composite momentum scoring and trend confluence. Find coins gaining consistently across 1h+4h+24h or detect early reversals. No API key. $0.001/coin.

- **URL**: https://apify.com/gochujang/crypto-momentum-scanner.md
- **Developed by:** [Hojun Lee](https://apify.com/gochujang) (community)
- **Categories:** Developer tools, Automation, News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Crypto Multi-Timeframe Momentum Scanner

> Scan **1000 cryptocurrencies** across **9 timeframes** (1m to 1 year) with composite momentum scoring and trend confluence detection. Find coins gaining consistently across multiple timeframes, or catch early reversals. No API key. **$0.001/coin** (50 coins = $0.05/run).

***

### The Problem It Solves

A coin up 50% in 24h sounds exciting — but is it already topping, or just starting? A coin down 5% today but up 30% in the past week might be pulling back for the next leg. Single-timeframe analysis misses this.

This actor gives you **all 9 timeframes at once** with a composite momentum score that weights recent price action while keeping longer-term context.

### How the Momentum Score Works

Each coin gets a weighted composite score:

| Timeframe | Default Weight |
|-----------|---------------|
| 1h | 10% |
| 4h | 20% |
| 24h | 35% |
| 7d | 25% |
| 30d | 10% |

Customize weights in the input to match your trading style (e.g., increase 4h weight for swing trading, increase 7d for trend following).

### Trend Labels

| Label | Score Range |
|-------|------------|
| `strong_uptrend` | +15 and above |
| `uptrend` | +5 to +15 |
| `neutral` | -5 to +5 |
| `downtrend` | -5 to -15 |
| `strong_downtrend` | -15 and below |

### Example Output

```json
{
  "rank": 42,
  "symbol": "SUI",
  "name": "Sui",
  "price_usd": 3.42,
  "market_cap_b": 10.2,
  "volume_24h_usd": 842000000,
  "momentum_score": 18.4,
  "trend": "strong_uptrend",
  "timeframe_confluence": 5,
  "change_1h": 2.1,
  "change_4h": 5.8,
  "change_24h": 14.2,
  "change_7d": 22.4,
  "change_30d": -8.3,
  "change_90d": -22.1,
  "change_1y": 45.2,
  "exchanges": ["binance", "bybit", "okx"],
  "coingecko_id": "sui"
}
```

### Common Screening Presets

**Multi-timeframe bulls (1h+4h+24h all positive):**

```json
{
  "sortBy": "momentum_score",
  "sortDirection": "desc",
  "trendFilter": "strong_uptrend",
  "minConfluence": 3,
  "minMarketCapMillion": 100,
  "limit": 20
}
```

**Top 24h gainers (small cap only):**

```json
{
  "sortBy": "change_24h",
  "sortDirection": "desc",
  "maxMarketCapMillion": 500,
  "minMarketCapMillion": 10,
  "limit": 25
}
```

**Top 24h losers (oversold bounce candidates):**

```json
{
  "sortBy": "change_24h",
  "sortDirection": "asc",
  "minMarketCapMillion": 100,
  "limit": 20
}
```

**7-day momentum screen:**

```json
{
  "sortBy": "change_7d",
  "sortDirection": "desc",
  "weight7d": 0.50,
  "weight1d": 0.25,
  "weight4h": 0.15,
  "weight1h": 0.10,
  "minMarketCapMillion": 50,
  "limit": 30
}
```

**Swing trading setup (4h momentum weighted):**

```json
{
  "sortBy": "momentum_score",
  "weight4h": 0.40,
  "weight1d": 0.30,
  "weight1h": 0.20,
  "weight7d": 0.10,
  "trendFilter": "uptrend",
  "minMarketCapMillion": 50,
  "limit": 25
}
```

### Input Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `sortBy` | string | `change_24h` | Sort by any timeframe, momentum score, or market cap |
| `sortDirection` | string | `desc` | `desc` for gainers, `asc` for losers |
| `trendFilter` | string | \`\` (all) | Filter by trend label |
| `minMarketCapMillion` | number | `0` | Min market cap in USD millions |
| `maxMarketCapMillion` | number | `0` (all) | Max market cap in USD millions |
| `minMomentumScore` | number | `0` | Min composite momentum score |
| `minConfluence` | integer | `0` | Min timeframes agreeing (0-9) |
| `weight1h–weight30d` | number | see above | Customize momentum score weights |
| `limit` | integer | `50` | Max results (up to 200) |

### Pricing

- **$0.001 per coin** (up to $0.20 for 200 results)
- Typical run: **50 coins = $0.05**
- Typical runtime: ~3 seconds (pre-computed data, no per-coin API calls)

### Data Source

[CryptoBubbles](https://cryptobubbles.net) — aggregated from multiple exchanges. Covers top 1000 coins by market cap with 9 timeframe performance data.

# Actor input Schema

## `sortBy` (type: `string`):

Primary sorting criterion.

## `sortDirection` (type: `string`):

'desc' for top gainers, 'asc' for top losers.

## `trendFilter` (type: `string`):

Only return coins with this trend label. Leave empty for all.

## `minMarketCapMillion` (type: `number`):

Filter out micro-cap coins. 0 = all.

## `maxMarketCapMillion` (type: `number`):

Filter out large caps to find small/mid cap opportunities. 0 = no limit.

## `minMomentumScore` (type: `number`):

Minimum weighted momentum score (5 = strong uptrend, -5 = downtrend). Default -999 = all.

## `minConfluence` (type: `integer`):

Min number of timeframes agreeing with the trend. 3 = at least 3 timeframes positive for bullish tokens.

## `weight1h` (type: `number`):

How much to weight the 1h change in the composite momentum score.

## `weight4h` (type: `number`):

How much to weight the 4h change in the composite momentum score.

## `weight1d` (type: `number`):

How much to weight the 24h change in the composite momentum score.

## `weight7d` (type: `number`):

How much to weight the 7d change in the composite momentum score.

## `weight30d` (type: `number`):

How much to weight the 30d change in the composite momentum score.

## `limit` (type: `integer`):

Maximum number of coins to return (up to 200).

## Actor input object example

```json
{
  "sortBy": "change_24h",
  "sortDirection": "desc",
  "trendFilter": "",
  "minMarketCapMillion": 0,
  "maxMarketCapMillion": 0,
  "minMomentumScore": 0,
  "minConfluence": 0,
  "weight1h": 0.1,
  "weight4h": 0.2,
  "weight1d": 0.35,
  "weight7d": 0.25,
  "weight30d": 0.1,
  "limit": 50
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("gochujang/crypto-momentum-scanner").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("gochujang/crypto-momentum-scanner").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call gochujang/crypto-momentum-scanner --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=gochujang/crypto-momentum-scanner",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/QLtkaNPdj9NRtFVdY/builds/eDqDq7Ww6s6BbedzV/openapi.json
