z7scan

z7scan

AI DEX Memecoin Scanner

Four signals. One scan score. Four phases.

z7scan shows you what the price is built on — not the chart, not the narrative, not the CT thread — liquidity depth, volume authenticity, wallet momentum, and DEX presence.

LIVEz7scan DEX Scanner now live

The Problem

Most scanners show you the price.

The memecoin launches. CT is hyped. The chart pumps. Everyone apes in. But nobody checks the underlying structure — the liquidity depth, the volume authenticity, the wallet momentum. Then it dumps, and everyone wonders why.

z7scan was built to read what the price is built on. Not the chart. Not the narrative. The actual trading structure. Four signals that determine whether a token has real DEX activity or is a ghost on the order book.

01

Liquidity

Is there real depth? Is LP old enough to be real?

02

Volume

Is 24h volume organic? Are unique wallets growing?

03

Momentum

Is buy pressure outpacing sell pressure right now?

04

Activity

Is concentration low? Are multiple DEXes listing?

Install

pip install z7scan

01
pip install z7scanInstall from PyPI
02
git clone https://github.com/iamz7scan/z7scan.gitOr clone from source
03
pip install -e .Install in editable mode

Phases

GHOST0-25

"z7scan: no signal. token is invisible on DEX. avoid."

FORMING26-50

"z7scan: weak signal. early liquidity forming. monitor."

ACTIVE51-75

"z7scan: scan positive. real volume and wallets detected."

LIVE76-100

"z7scan: live. AI confirms active DEX presence. signal strong."

Signals

SignalWeightTrigger
liquidity_signal0.35depth >= $5,000 AND bsr >= 0.8 AND lp_age >= 24h
volume_signal0.30volume >= $10,000 AND wallets >= 50 AND listings >= 1
momentum_signal0.20price_change > 0% AND bsr >= 1.0
activity_signal0.15top10 < 75% AND listings >= 2 AND wallets >= 30
example.pyPython
from z7scan import scan, scan_batch, hottest, ScanToken

token = ScanToken(
    token_mint="Z7ScanXyz...pump",
    symbol="Z7SCAN",
    dex_volume_24h=35000.0,
    liquidity_depth_usd=12000.0,
    unique_wallets_24h=120,
    buy_sell_ratio=1.4,
    price_change_1h_pct=8.0,
    lp_age_hours=96.0,
    top10_wallet_pct=0.38,
    dex_listing_count=3,
)

report = scan(token)

print(report.phase)       # LIVE
print(report.scan_score)  # 84.2
print(report.z7_read)     # z7scan: live. AI confirms active DEX presence.
print(report.triggered_count)  # 4

Explore

Everything you need to scan memecoins. Four signals. One scan score. Four phases.

Ready to scan memecoins?

pip install z7scan