CCXT MCP Server

by doggybee
Verified
MIT License
127
4
  • Apple

get-leverage-tiers

Retrieve futures leverage tiers for trading pairs on supported exchanges to manage risk and optimize trading strategies. Input exchange ID and optional trading pair symbol.

Instructions

Get futures leverage tiers for trading pairs

Input Schema

NameRequiredDescriptionDefault
exchangeYesExchange ID (e.g., binance, bybit)
marketTypeNoMarket type (default: future)future
symbolNoTrading pair symbol (optional, e.g., BTC/USDT)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "exchange": { "description": "Exchange ID (e.g., binance, bybit)", "type": "string" }, "marketType": { "default": "future", "description": "Market type (default: future)", "enum": [ "future", "swap" ], "type": "string" }, "symbol": { "description": "Trading pair symbol (optional, e.g., BTC/USDT)", "type": "string" } }, "required": [ "exchange" ], "type": "object" }
ID: zrx6mdpyxy