tastytrade · Schema

ExitConditions

FinanceBrokerageTradingOptionsFuturesEquitiesCryptoMarket DataWebSocket

Properties

Name Type Description
takeProfitPercentage integer
stopLossPercentage integer
afterDaysInTrade integer
atDaysToExpiration integer
minimumVIX integer
View JSON Schema on GitHub

JSON Schema

backtesting-ExitConditions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://developer.tastytrade.com/schemas/backtesting/ExitConditions",
  "title": "ExitConditions",
  "type": "object",
  "properties": {
    "takeProfitPercentage": {
      "type": "integer",
      "nullable": true
    },
    "stopLossPercentage": {
      "type": "integer",
      "nullable": true
    },
    "afterDaysInTrade": {
      "type": "integer",
      "nullable": true
    },
    "atDaysToExpiration": {
      "type": "integer",
      "nullable": true
    },
    "minimumVIX": {
      "type": "integer",
      "nullable": true
    }
  }
}