Why a Daily Trend Radar Beats Staring at 100 Charts

A daily trend radar indicator for crypto answers one question at a glance: which coins are actually trending right now, which are chopping sideways, and which just flipped direction? Stare at 100 daily charts and your eyes glaze over by coin 12. Worse, you end up trading the first chart that looks interesting rather than the best one.

The SIGNUM RGG indicator solves this by giving every tradeable coin a single daily color: GREEN (uptrend), GREY (sideways), or RED (downtrend). You see hundreds of tickers at once on the live radar page, sortable by how fresh the flip is, how much price has moved since the flip, and — for grey assets — how tight the current consolidation range is.

The point isn't to replace chart-reading. It's to shortlist the five coins that are worth chart-reading today.

How SIGNUM RGG Classifies Every Coin Red, Grey, or Green

The classification is a dead-simple ADX + DMI rule applied to daily closes, with a hysteresis band to kill whipsaws. No magic, no ML, no overfitting.

That's it. ADX measures how much a market is trending; +DI vs -DI says which way. When ADX is weak, direction is statistical noise, so the coin is grey. When ADX rips past 25 with +DI leading, it's a real uptrend. The hysteresis band between 20 and 25 stops the signal from flapping green-grey-green-grey on a single ADX print.

Two extras turn the classifier into a useful tool. First, every coin reports its flip date — the bar the current color began — plus days in color and % change since the flip. Second, grey coins report their 20-day consolidation range (low, high, width %) so you can see which ones are coiled tight and ripe for a breakout.

Four Trade-Actionable Patterns the Indicator Surfaces

Color alone is not a signal. The combination of color, days, and % move is.

Every query to the radar returns these fields pre-computed so you can filter directly:

GET /api/v1/indicators/signum-rgg?color=green&max_days=3&sort=pct_change&order=asc

That one call gives you every fresh-green-flip coin ordered by how little price has moved yet — your early-entry watchlist for the day.

How Do AI Agents Use the Trend Radar?

AI trading agents and research assistants have the same problem human traders do: too many tickers, not enough attention. A trend radar is ideal agent input because the output is structured, small, and actionable.

Three common agent workflows:

Because the indicator refreshes once per daily close, agents can cache results for 24 hours without any freshness risk. No websocket, no rate-limit juggling.

Daily Trend Radar vs Moving-Average Crossover

Most trend filters in public circulation are simple MA crossovers (e.g. 20-day over 50-day) or a single-MA-slope rule. The ADX + DMI approach behind SIGNUM RGG is a strict upgrade for three reasons.

PropertyMA CrossoverSIGNUM RGG (ADX+DMI)
Distinguishes trend from rangeNo — always a binary above/belowYes — explicit GREY state
Whipsaw protectionLag only — flips on every small crossHysteresis band 20–25 holds prior color
Trend strength infoNone — only directionADX value ships with every row
Range breakout detectionNot natively — needs extra logic20-day Donchian range on every grey asset

The grey state is the important upgrade. Markets spend most of their time in range, not in trend — a binary indicator forces you to trade during those ranges, which is where strategies bleed. An explicit grey label tells you to wait for the breakout instead of front-running it.

Calling the Trend Radar from a Trading Bot

The endpoint is a single REST call. Two examples — a curl one-liner and a Python snippet for an automated bot.

curl — today's fresh green flips

curl "https://cryptodataapi.com/api/v1/indicators/signum-rgg?color=green&max_days=3&limit=20" \
     -H "X-API-Key: cdk_live_YOUR_KEY"

Python — agent regime filter

import httpx

API = "https://cryptodataapi.com"
HEADERS = {"X-API-Key": "cdk_live_YOUR_KEY"}

def trend_color(symbol: str) -> str:
    """Return 'green', 'grey', or 'red' for a coin's current daily trend."""
    r = httpx.get(f"{API}/api/v1/indicators/signum-rgg/{symbol}", headers=HEADERS)
    r.raise_for_status()
    return r.json()["color"]

def can_go_long(symbol: str) -> bool:
    return trend_color(symbol) == "green"

Each row in the response includes symbol, color, days_in_color, flipped_at, pct_change_since_flip, price, adx, plus_di, minus_di, and — for grey assets — range.low, range.high, and range.width_pct. The detail endpoint also returns a 60-day color history suitable for plotting a trend-strip under a chart.

The radar covers every liquid Binance USDT pair (≥$100K/day volume) plus all Hyperliquid perps, deduped — Binance Spot wins on overlap. Universe size is typically ~600 assets. Refreshes once per day at 00:10 UTC after the daily candle close.

When to Use It, When to Skip It

Use the radar for:

Skip it for:

See the live radar visualisation on the Coin Trends page, or pull the full indicator programmatically via /api/v1/indicators/signum-rgg with a Pro Plus key. Pair it with our Crypto Market Health Analysis for a top-down read on whether the overall regime supports the coin-level trends you're seeing.