{
  "properties": {
    "name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "New strategy name; shortened to 5 words / 48 chars and versioned on collision.",
      "title": "Name"
    },
    "strategy_id": {
      "description": "Strategy ID",
      "title": "Strategy Id",
      "type": "string"
    },
    "symbols": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "minItems": 1,
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "New list of trading symbols. Single-instrument: ['ETH-USD']. Basket: ['AAPL', 'MSFT', 'GOOG']. Replaces the existing Strategy.instruments entirely; resets status to draft. 13 tickers name both an equity and a crypto pair (LTC, DASH, LINK, ...); those are rejected as ambiguous \u2014 say 'LTC-USD' for the crypto pair or 'EQ:LTC' for the equity.",
      "title": "Symbols"
    },
    "timeframe": {
      "anyOf": [
        {
          "enum": [
            "1m",
            "5m",
            "15m",
            "30m",
            "1h",
            "4h",
            "1d"
          ],
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "New timeframe. Resets to draft.",
      "title": "Timeframe"
    },
    "volume_units": {
      "anyOf": [
        {
          "enum": [
            "base",
            "quote"
          ],
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "'base' (exchange-native) or 'quote' (volume * close). Default: base.",
      "title": "Volume Units"
    }
  },
  "required": [
    "strategy_id"
  ],
  "title": "builder_edit_strategyArguments",
  "type": "object"
}
