Saltar al contenido principal
GET
/
api
/
external
/
indicators
/
{indicator_id}
curl -X GET "https://api.innova-trading.com/api/external/indicators/mis_senales?symbol=EURUSD&timeframe=60" \
  -H "Authorization: Bearer TU_API_KEY"
{
  "success": true,
  "indicator_id": "mis_senales",
  "indicator_name": "Mis Senales de Trading",
  "version": "1.0",
  "symbol": "EURUSD",
  "timeframe": 60,
  "points": [
    {
      "time": 1765540800,
      "bar_number": 0,
      "type": "low",
      "price": 1.1725,
      "label": "COMPRA",
      "color": "#3b82f6",
      "shape": "arrowUp",
      "size": 2
    },
    {
      "time": 1765540800,
      "bar_number": 0,
      "type": "low",
      "price": 1.1700,
      "label": "SL",
      "color": "#ef4444",
      "shape": "square",
      "size": 1
    }
  ],
  "metadata": {
    "signal_type": "COMPRA",
    "strategy": "ICT"
  },
  "created_at": "2025-12-12T12:00:00Z",
  "expires_at": "2025-12-13T12:00:00Z"
}

Solicitud

indicator_id
string
required
El identificador unico del indicador
symbol
string
required
Simbolo de trading (ej: EURUSD)
timeframe
integer
required
Timeframe en minutos

Respuesta

success
boolean
Indica si la solicitud fue exitosa
indicator_id
string
El ID del indicador
indicator_name
string
Nombre legible
version
string
Version del indicador
symbol
string
Simbolo de trading
timeframe
integer
Timeframe en minutos
points
array
Array de puntos de senal
metadata
object
Metadata opcional
created_at
string
Fecha ISO 8601 de creacion
expires_at
string
Fecha ISO 8601 de expiracion
curl -X GET "https://api.innova-trading.com/api/external/indicators/mis_senales?symbol=EURUSD&timeframe=60" \
  -H "Authorization: Bearer TU_API_KEY"
{
  "success": true,
  "indicator_id": "mis_senales",
  "indicator_name": "Mis Senales de Trading",
  "version": "1.0",
  "symbol": "EURUSD",
  "timeframe": 60,
  "points": [
    {
      "time": 1765540800,
      "bar_number": 0,
      "type": "low",
      "price": 1.1725,
      "label": "COMPRA",
      "color": "#3b82f6",
      "shape": "arrowUp",
      "size": 2
    },
    {
      "time": 1765540800,
      "bar_number": 0,
      "type": "low",
      "price": 1.1700,
      "label": "SL",
      "color": "#ef4444",
      "shape": "square",
      "size": 1
    }
  ],
  "metadata": {
    "signal_type": "COMPRA",
    "strategy": "ICT"
  },
  "created_at": "2025-12-12T12:00:00Z",
  "expires_at": "2025-12-13T12:00:00Z"
}
Los datos del indicador expiran automaticamente despues de 24 horas. Asegurate de re-enviar tus senales periodicamente.