CCXT MCP Server

by lazy-dinosaur
Verified

fetchMyTrades

Retrieve personal trade history from cryptocurrency exchanges using a configured account. Specify account name, symbol, limit, and timestamp for precise data extraction.

Instructions

Fetch personal trade history for a configured account

Input Schema

NameRequiredDescriptionDefault
accountNameYesAccount name defined in the configuration file (e.g., 'bybit_main')
limitNoLimit the number of trades returned (optional)
sinceNoTimestamp in ms to fetch trades since (optional)
symbolNoTrading symbol (e.g., 'BTC/USDT')

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "accountName": { "description": "Account name defined in the configuration file (e.g., 'bybit_main')", "type": "string" }, "limit": { "description": "Limit the number of trades returned (optional)", "type": "number" }, "since": { "description": "Timestamp in ms to fetch trades since (optional)", "type": "number" }, "symbol": { "description": "Trading symbol (e.g., 'BTC/USDT')", "type": "string" } }, "required": [ "accountName" ], "type": "object" }
ID: mt6hftp7hy