PCM

by rand-tech
Verified

place-futures-market-order

Execute futures market orders on supported exchanges by specifying trading pairs, amounts, and order sides. Authenticate via API keys to manage buy/sell positions effectively.

Instructions

Place a futures market order

Input Schema

NameRequiredDescriptionDefault
amountYesAmount to buy/sell
apiKeyYesAPI key for authentication
exchangeYesExchange ID (e.g., binance, bybit)
marketTypeNoMarket type (default: future)future
paramsNoAdditional order parameters
secretYesAPI secret for authentication
sideYesOrder side: buy or sell
symbolYesTrading pair symbol (e.g., BTC/USDT)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "amount": { "description": "Amount to buy/sell", "exclusiveMinimum": 0, "type": "number" }, "apiKey": { "description": "API key for authentication", "type": "string" }, "exchange": { "description": "Exchange ID (e.g., binance, bybit)", "type": "string" }, "marketType": { "default": "future", "description": "Market type (default: future)", "enum": [ "future", "swap" ], "type": "string" }, "params": { "additionalProperties": {}, "description": "Additional order parameters", "type": "object" }, "secret": { "description": "API secret for authentication", "type": "string" }, "side": { "description": "Order side: buy or sell", "enum": [ "buy", "sell" ], "type": "string" }, "symbol": { "description": "Trading pair symbol (e.g., BTC/USDT)", "type": "string" } }, "required": [ "exchange", "symbol", "side", "amount", "apiKey", "secret" ], "type": "object" }
ID: ma2f8iji6w