get_crypto_flow
Analyze real-time institutional crypto orderflow signals from Binance Level 2 orderbook and aggressive trade feeds to detect buy/sell pressure, market state, and risk levels for trading pairs.
Instructions
Get real-time institutional orderflow signal for a cryptocurrency.
Returns live microstructure intelligence extracted from:
- Binance Level 2 Orderbook (bid/ask imbalance ratio)
- Aggressive Trade Feed (buy vs sell delta)
The response includes:
- signal: BUY_PRESSURE / SELL_PRESSURE / NEUTRAL
- confidence: 0.0 to 1.0 AI confidence score
- market_state: TRENDING_UP / TRENDING_DOWN / RANGE_BOUND / VOLATILE
- risk: LOW / MEDIUM / HIGH / EXTREME
- bid_ratio: orderbook bid imbalance (>1 = more bids than asks)
- buy_ratio: aggressive buy percentage (>0.7 = heavy buying)
- delta_5s: net volume delta over last 5 seconds
Args:
symbol: Trading pair symbol (e.g., BTCUSDT, ETHUSDT, SOLUSDT)
Example usage:
get_crypto_flow("BTCUSDT")Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |