Trading 212 · Schema

StopRequest

Trading 212 StopRequest schema

InvestingFinanceTradingStocksPortfolioCommission-FreeISA

Properties

Name Type Description
quantity number
stopPrice number
ticker string
timeValidity object Expiration
View JSON Schema on GitHub

JSON Schema

StopRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/trading212/refs/heads/main/json-schema/StopRequest.json",
  "title": "StopRequest",
  "description": "Trading 212 StopRequest schema",
  "properties": {
    "quantity": {
      "example": 0.1,
      "type": "number"
    },
    "stopPrice": {
      "example": 100.23,
      "type": "number"
    },
    "ticker": {
      "example": "AAPL_US_EQ",
      "type": "string"
    },
    "timeValidity": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/trading212/refs/heads/main/json-schema/TimeValidity",
      "description": "Expiration",
      "example": "DAY"
    }
  },
  "type": "object"
}