Skip to main content
Glama
enderekici

Trading 212 MCP Server

by enderekici

place_stop_limit_order

Execute a stop-limit order that converts to a limit order when a specified stop price is reached, allowing precise control over trade entry or exit points.

Instructions

Place a stop-limit order that becomes a limit order when the stop price is reached

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tickerYesThe ticker symbol of the instrument
quantityYesThe quantity to buy (positive) or sell (negative)
stopPriceYesThe stop price that triggers the limit order
limitPriceYesThe limit price for the order once triggered
timeValidityNoTime validity of the orderDAY

Implementation Reference

  • The implementation of the place_stop_limit_order tool, which calls the Trading 212 API endpoint /equity/orders/stop_limit.
    async placeStopLimitOrder(order: StopLimitOrderRequest): Promise<Order> {
      return this.request(
        '/equity/orders/stop_limit',
        {
          method: 'POST',
          body: JSON.stringify(order),
        },
        OrderSchema,
      );
    }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/enderekici/trading212-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server