fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. GreXFarrier
    G
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 4
    • Best 0
    • Controversial 0
    • Groups 0

    GreXFarrier

    @GreXFarrier

    0
    Reputation
    3
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    GreXFarrier Unfollow Follow

    Latest posts made by GreXFarrier

    • RE: how to repeat horizontal line or how to create loop for horizontal line

      double price;
      for (int i = 0; i < v::MaxPositions; i++)
      {
      price = NormalizeDouble(SymbolInfoDouble(_Symbol,SYMBOL_BID),_Digits); // Obtener el precio actual del Bid
      price = price - v::distance;
      // Crear una línea horizontal en el precio "price" con grosor de 0.5 y color verde
      string lineName =ObjectCreate(0,"Position " + IntegerToString(i),OBJ_HLINE,0,0,price);
      ObjectSetInteger(0, "Position " + IntegerToString(i), OBJPROP_COLOR, Red);
      ObjectSetInteger(0, "Position " + IntegerToString(i), OBJPROP_WIDTH, 0.5);
      }

      posted in Questions & Answers
      G
      GreXFarrier
    • RE: Anyone who knows to implement Sockets IO

      thanks Bro

      posted in Questions & Answers
      G
      GreXFarrier
    • RE: Anyone who knows to implement Sockets IO

      Ok I made a nodejs socket server, when I send a message from MT5 to the server it receives it.
      this is the code:
      int socket = SocketCreate();
      char req[];
      int len = StringToCharArray("Buy", req) - 1;
      SocketSend(socket, req, len);
      SocketClose(socket);

      But I can make it receives data from the server, I try with SocketRead(), but I can't get it works

      posted in Questions & Answers
      G
      GreXFarrier
    • Anyone who knows to implement Sockets IO

      Anyone who knows how to implement a socket connection,

      posted in Questions & Answers
      G
      GreXFarrier