> ## Documentation Index
> Fetch the complete documentation index at: https://docs.innova-trading.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Indicator

> Delete indicator data from the system

## Request

<ParamField path="indicator_id" type="string" required>
  The unique identifier of the indicator to delete
</ParamField>

<ParamField query="symbol" type="string" required>
  Trading symbol (e.g., `EURUSD`)
</ParamField>

<ParamField query="timeframe" type="integer" required>
  Timeframe in minutes
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Indicates if the deletion was successful
</ResponseField>

<ResponseField name="message" type="string">
  Confirmation message
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.innova-trading.com/api/external/indicators/my_signals?symbol=EURUSD&timeframe=60" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```python Python theme={null}
  response = requests.delete(
      "https://api.innova-trading.com/api/external/indicators/my_signals",
      params={"symbol": "EURUSD", "timeframe": 60},
      headers={"Authorization": "Bearer YOUR_API_KEY"}
  )

  if response.status_code == 200:
      print("Indicator deleted successfully")
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    "https://api.innova-trading.com/api/external/indicators/my_signals?symbol=EURUSD&timeframe=60",
    {
      method: "DELETE",
      headers: { Authorization: "Bearer YOUR_API_KEY" }
    }
  );

  if (response.ok) {
    console.log("Indicator deleted successfully");
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "success": true,
    "message": "Indicator data deleted"
  }
  ```

  ```json Not Found theme={null}
  {
    "error": "not_found",
    "message": "Indicator not found"
  }
  ```
</ResponseExample>

<Warning>
  This action is irreversible. The indicator data will be immediately removed and will no longer appear on charts.
</Warning>
