get_market_structure
Analyze market structure for trading pairs on Bybit using ML-RSI, order blocks, and liquidity zones to detect trends and generate actionable trading insights.
Instructions
Advanced market structure analysis combining ML-RSI, order blocks, and liquidity zones. Provides comprehensive market regime detection and trading recommendations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisDepth | No | How far back to analyse (default: 200) | |
category | Yes | Category of the instrument | |
includeLiquidityZones | No | Include liquidity analysis (default: true) | |
includeMLRSI | No | Include ML-RSI analysis (default: true) | |
includeOrderBlocks | No | Include order block analysis (default: true) | |
interval | Yes | Kline interval | |
symbol | Yes | Trading pair symbol (e.g., 'BTCUSDT') |
Input Schema (JSON Schema)
{
"properties": {
"analysisDepth": {
"description": "How far back to analyse (default: 200)",
"maximum": 500,
"minimum": 100,
"type": "number"
},
"category": {
"description": "Category of the instrument",
"enum": [
"spot",
"linear",
"inverse"
],
"type": "string"
},
"includeLiquidityZones": {
"description": "Include liquidity analysis (default: true)",
"type": "boolean"
},
"includeMLRSI": {
"description": "Include ML-RSI analysis (default: true)",
"type": "boolean"
},
"includeOrderBlocks": {
"description": "Include order block analysis (default: true)",
"type": "boolean"
},
"interval": {
"description": "Kline interval",
"enum": [
"1",
"3",
"5",
"15",
"30",
"60",
"120",
"240",
"360",
"720",
"D",
"W",
"M"
],
"type": "string"
},
"symbol": {
"description": "Trading pair symbol (e.g., 'BTCUSDT')",
"pattern": "^[A-Z0-9]+$",
"type": "string"
}
},
"required": [
"symbol",
"category",
"interval"
],
"type": "object"
}