Skip to main content
Glama

Estimasi Risiko Likuiditas Stop-Loss

estimate_stop_loss_liquidity_risk
Read-only

Cek apakah depth order book cukup buat nyerap SL tanpa slippage parah, plus validasi Open Interest -- LOW/HIGH_SLIPPAGE_RISK/HIGH_DATA_INCOMPLETE. Mendukung LONG (jalan-kan bids turun) dan SHORT (jalan-kan asks naik). Data diinjeksi caller (BUKAN fetch sendiri). BUKAN pengganti analyze_futures_grid_risk (engine grid-bot lengkap yang sudah ada) -- ini cek likuiditas sederhana, cocok untuk kedua arah posisi.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
asksYes
bidsYes
symbolYesSimbol pair Binance Futures, contoh: BTCUSDT, ETHUSDT. Harus pair perpetual yang terdaftar di Binance USDS-M Futures.
currentPriceYes
openInterestYesPayload OI mentah dari Binance (openInterest/sumOpenInterest string, atau angka).
positionSideYes
stopLossPriceYes
slippageThresholdUsdNoAmbang notional depth-to-SL minimum, default $50k.

TDQS

A4.6/5.0
Behavior5/5

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

With readOnlyHint=true, the safety profile is already supplied by annotations; the description adds valuable behavioral context by stating the tool does not fetch its own data, walks bids downward for LONG and asks upward for SHORT, and reports HIGH_DATA_INCOMPLETE when validation fails. This tells an agent exactly what will happen at runtime.

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

Conciseness5/5

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

Two sentences front-load the purpose, then cover direction behavior, data-injection mode, and sibling differentiation without padding. Every clause serves a distinct decision an agent needs to make.

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?

For an 8-parameter tool with no output schema, the description is almost sufficient: it names return categories, explains direction-specific behavior, and states caller-injected data. It could add a little more detail on why OI validation matters or how thresholds are applied, but the essential calling context is present.

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

Parameters4/5

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

Schema description coverage is only 38%, so the narrative must carry meaning. The description maps the main parameters to the computation: bids/asks for depth, currentPrice/stopLossPrice for the SL path, openInterest for validation, and positionSide for direction. slippageThresholdUsd is the only parameter left to rely on the schema, which already documents it.

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 opens with a specific verb and object: checking whether order book depth can absorb a stop-loss without severe slippage, and mentions the three concrete output labels (LOW/HIGH_SLIPPAGE_RISK/HIGH_DATA_INCOMPLETE). It also explicitly separates itself from analyze_futures_grid_risk, so an agent can distinguish it from that sibling without opening the schema.

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 states the tool is a simple liquidity check, says it supports both LONG and SHORT, and explicitly warns it is NOT a replacement for analyze_futures_grid_risk, which orients the agent toward the right alternative. It stops short of defining precise conditions for choosing this tool over estimate_slippage or analyze_futures_grid_risk, but the core usage context is clear.

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