Skip to main content
Glama

Deteksi Aktivitas Market Maker / Whale (Composite Score)

binance_detect_mm_activity
Read-only

Gabungkan 6 sinyal (absorption, spoofing, stop-hunt, basis arbitrage, OI divergence, funding extreme) jadi 1 skor + tier (Weak/Moderate/Strong/Extreme) -- ganti 5-6 tool call manual. BUKAN rekomendasi trading. Spoofing pakai 2-snapshot order book RIIL (~1-2 detik lebih lambat dari tool lain karenanya, sama mekanisme dengan binance_get_orderbook_delta) -- BUKAN heuristik 1-snapshot lagi. Stop-hunt cek wick simetris + 2 proxy independen (OI-drop, konsentrasi trade agresif di zona wick) DAN -- sejak stream gateway VPS -- data liquidation-by-price RIIL (cluster liquidasi di zona wick, sisi hunt); feed di-sampel Binance (1/symbol/detik) jadi tetap confidence-boost di atas pola wick+body+reversal, bukan trigger tunggal, dan fallback ke proxy kalau gateway degraded -- lihat docs/mm_detection_framework.md untuk batasan lengkap. Confidence tiap sinyal beda-beda: spoofing/basisArb/fundingExtreme pakai data resmi Binance langsung (lebih tinggi), stop-hunt tertinggi kalau ada cluster liquidasi riil, turun ke proxy tak-langsung kalau tidak (evidence text tiap response bilang mana yang aktif). Snapshot juga disimpan tiap 5 menit ke D1 (binance_backtest_signal untuk validasi empiris).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolYesSimbol pair Binance Futures, contoh: BTCUSDT, ETHUSDT. Harus pair perpetual yang terdaftar di Binance USDS-M Futures.

TDQS

A3.5/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description is rich with behavioral details: 2-snapshot order-book mechanics, ~1-2 second latency, Binance sampling rate, confidence differences, fallback behavior, and evidence text. However, it states that snapshots are also saved every 5 minutes to D1, which is a write side effect and directly contradicts the readOnlyHint: true annotation. Per the rubric, this is an annotation contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The main purpose is front-loaded in the first clause, and the subsequent dense sentences carry substantive caveats about data sources, latency, fallback, and confidence. It is long, but the complexity of a six-signal detector justifies most of the detail; a slightly tighter edit would earn a 5.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description specifies the composite output (score, tier, evidence text) and directs the agent to documentation for full limitations, which covers most operational needs. However, with no output schema present, it does not spell out the exact response structure or tier thresholds, leaving some ambiguity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides 100% coverage for the single symbol parameter, including pattern, length, and example values. The description does not add any additional parameter-specific semantics, so the baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Gabungkan' and the exact resource: six MM/whale signals combined into one score plus a tier. It also separates this tool from single-signal siblings by noting it replaces 5-6 manual tool calls and explicitly says it is not a trading recommendation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives a clear consolidation use case ('ganti 5-6 tool call manual') and a negative boundary ('BUKAN rekomendasi trading'). It does not name specific sibling alternatives or provide explicit when-to-use versus when-not-to-use criteria, so it falls just short of full guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation4/5

Most tools map to a distinct Binance metric or analytic concept, and descriptions explicitly contrast near-neighbors (spot vs futures, snapshot vs delta, 'BEDA dari...' notes). A few pairs could still be confused—`binance_get_basis` vs `binance_get_basis_history` and `binance_get_agg_trades` vs `binance_get_recent_trades`—but their purpose differences are explained well enough for careful agents.

Naming Consistency4/5

The dominant pattern is `binance_<verb>_<object>` in snake_case, with consistent complementary pairs like `get_*` and `get_*_history`. There are minor style breaks: `orderbook` vs `order_book`, the `whalescope_*` prefix, and `whalescope_full_pipeline` which lacks a verb, but the overall structure is readable and predictable.

Tool Count1/5

56 tools cross the explicit '50+ tools' extreme threshold. Although the Binance Futures domain is broad, many tools are single-endpoint or single-metric wrappers—multiple klines variants, order book variants, and ticker variants—that could be consolidated into parameterized composite tools. The surface is far too large for most agents to navigate efficiently.

Completeness4/5

The public market-data and analytics surface is remarkably complete: klines, funding, open interest, long/short ratios, top-trader data, liquidations, basis, order book behavior, regime detection, and full pipeline scoring are all covered. The main gaps are documented limitations such as unavailable liquidation-by-price data and non-public account/execution tooling, but agents can work around them without dead ends.

Resources