API - Documentación

WebSocket API para Trading Alerts

Conexión WebSocket

URL de conexión: wss://192.229.23.100:45001/Trading/Alerts?api_key={apiKey}

Mensajes Recibidos

Estructura del Mensaje

public class RootMessage
{
    public string source { get; set; }
    public string Data { get; set; }
}

public class RootAlert
{
    public string apiKey { get; set; }
    public string source { get; set; }
    public string id { get; set; }
    public string timestamp { get; set; }
    public string summary { get; set; }
    public string ticker { get; set; }
    public string confidence { get; set; }
    public string relevance { get; set; }
    public string sentiment { get; set; }
    public string expectedMove { get; set; }
    public string expectedRange { get; set; }
    public string strategy { get; set; }
    public string mktContext { get; set; }
    public string riskFactors { get; set; }
    public bool trade { get; set; }
    public bool turbo_trade { get; set; }
    public string message { get; set; }
}
            

Documentación de Campos

//