Import trade tags

Import or export EndureTrade trading journal trade tags as JSON from the web app — paste text or upload a file. You can also share this page URL with an AI assistant so it generates a valid import file for you.

Page URL for AI prompts: https://www.enduretrade.com/docs/tags/import

Fields

FieldTypeRequiredNotes
idstring (uuid)NoIf provided and matches an existing tag, updates that row; otherwise ignored on create
labelstringYesMin length 1; must be unique per user on create
descriptionstringNoOptional notes
subTagsstring[]NoNested labels; defaults to []. When set, we will have <label>:<subTag> pairs for each subTag.

Example

You can import one object or a list of objects. Everything is checked before any rows are written.

[
  {
    "label": "Setup quality",
    "description": "How clean the setup was",
    "subTags": [
      "A+",
      "B",
      "C"
    ]
  },
  {
    "label": "Session",
    "subTags": [
      "London",
      "New York"
    ]
  }
]

How import behaves

When id matches a record you already own, that record is updated. When id is missing or does not match, a new record is created and any unknown id is ignored. Read-only fields such as userId and timestamps from export files are ignored.