fxDreema

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

    rungsan

    @rungsan

    0
    Reputation
    540
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    rungsan Unfollow Follow

    Latest posts made by rungsan

    • RE: I Can't download EA file and I cant writting EA for 3 Days. (My internet so fast)

      I have the same problem. The server is very slow. More than 80% of downloads fail. CPU and RAM should be upgraded for better computation.

      posted in Bug Reports
      R
      rungsan
    • Feature Requests - Can you increase number of columns of block "Write to file"

      The "write to file" block is very useful. I can use it for statistics and analysis EA in Excel, but it only has 10 columns. It would be great if you could increase the number of columns more, at least 20.

      posted in General Discussions
      R
      rungsan
    • RE: mt5 compilation problem

      I have same problem.

      LoadOrder
      OrderGetTicket

      posted in Bug Reports
      R
      rungsan
    • Integrate with Line Notification

      How to convert the following script to Custom MQL Code on fxDreema?

      ##################################################
      //+------------------------------------------------------------------+
      //| SendLineAlert.mq4 |
      //| Copyright 2018, MetaQuotes Software Corp. |
      //| https://www.mql5.com |
      //+------------------------------------------------------------------+
      #property copyright "Copyright 2018, MetaQuotes Software Corp."
      #property link "https://www.mql5.com"
      #property version "1.00"
      #property strict
      //+------------------------------------------------------------------+
      //| Expert initialization function |
      //+------------------------------------------------------------------+
      input string Token ="";
      input string Massage ="Hello";

      int OnInit()
      {
      //---
      string headers;
      char data[], result[];

      headers="Authorization: Bearer "+Token+"\r\n application/x-www-form-urlencoded\r\n";

      ArrayResize(data,StringToCharArray("message="+Massage,data,0,WHOLE_ARRAY,CP_UTF8)-1);

      int res = WebRequest("POST", "https://notify-api.line.me/api/notify", headers, 0, data, data, headers);
      if(res==-1)
      {
      Print("Error in WebRequest. Error code =",GetLastError());
      MessageBox("Add the address 'https://notify-api.line.me' in the list of allowed URLs on tab 'Expert Advisors'","Error",MB_ICONINFORMATION);
      }

      //---
      return(INIT_SUCCEEDED);
      }
      //+------------------------------------------------------------------+
      //| Expert deinitialization function |
      //+------------------------------------------------------------------+
      void OnDeinit(const int reason)
      {
      //---

      }
      //+------------------------------------------------------------------+
      //| Expert tick function |
      //+------------------------------------------------------------------+
      void OnTick()
      {
      //---

      }
      //+------------------------------------------------------------------+

      posted in Questions & Answers
      R
      rungsan
    • RE: Check "Latest close position" before trade

      Thank you, but it just a close type.
      For close price I got it in Modify Variables>(on Trade) Event Data.

      posted in Questions & Answers
      R
      rungsan
    • RE: Check "Latest close position" before trade

      Nothing for "Latest close position" in check trading conditions blocks.
      How can I get this value?

      posted in Questions & Answers
      R
      rungsan
    • Check "Latest close position" before trade

      Hi,
      I want to check "Latest close position" of order before trade
      Is there solution for this case?

      If "Latest close position" < "current position" 20 pips, not allow to trade.
      
      posted in Questions & Answers
      R
      rungsan