fxDreema

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

    pentest3rz

    @pentest3rz

    1
    Reputation
    12
    Profile views
    2
    Posts
    1
    Followers
    0
    Following
    Joined Last Online

    pentest3rz Unfollow Follow

    Best posts made by pentest3rz

    • RE: How to change minimum lot size from 0.01 to 0.001?

      I had to write the solution myself in an MQL code block:

      runningLots = 0;
      ulong order_ticket;
      for(int i=0;i<PositionsTotal();i++) {
      if((order_ticket=PositionGetTicket(i))>0)
      runningLots+=PositionGetDouble(POSITION_VOLUME);
      }

      posted in Questions & Answers
      P
      pentest3rz

    Latest posts made by pentest3rz

    • RE: How to change minimum lot size from 0.01 to 0.001?

      I had to write the solution myself in an MQL code block:

      runningLots = 0;
      ulong order_ticket;
      for(int i=0;i<PositionsTotal();i++) {
      if((order_ticket=PositionGetTicket(i))>0)
      runningLots+=PositionGetDouble(POSITION_VOLUME);
      }

      posted in Questions & Answers
      P
      pentest3rz
    • RE: How to change minimum lot size from 0.01 to 0.001?

      Any updates on this issue? I'm still facing the same, initial lot 0.001 placed fine but when incrementing it, it keeps placing the same initial lot size 😕

      posted in Questions & Answers
      P
      pentest3rz