Import strategies

Import or export EndureTrade trading journal strategies 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/strategy/import

Fields

FieldTypeRequiredNotes
idstring (uuid)NoIf provided and matches an existing strategy, updates that row; otherwise ignored on create
namestringYesMin length 1
descriptionstringYesMarkdown or plain text; may be empty
entrystring[]YesEntry checklist items
exitstring[]YesExit checklist items
tagsstring[]YesLabels; trimmed and deduped
statusstringYes"active" | "disabled" | "retired"

Example

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

[
  {
    "name": "Breakout pullback",
    "description": "## Momentum continuation\n\nLook for a shallow pullback after a higher high.",
    "entry": [
      "Higher high on daily",
      "Pullback to VWAP",
      "Volume expansion on trigger bar"
    ],
    "exit": [
      "Target at prior high",
      "Stop below pullback low"
    ],
    "tags": [
      "momentum",
      "intraday"
    ],
    "status": "active"
  }
]

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.