fxDreema

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

    Sapiens

    @Sapiens

    0
    Reputation
    402
    Profile views
    3
    Posts
    0
    Followers
    1
    Following
    Joined Last Online

    Sapiens Unfollow Follow

    Latest posts made by Sapiens

    • Array out of range at OnTradeDetector()

      Recentrly encountered a problem when my FXDreema experts had crushed with "array out of range" error:
      "2019.03.04 12:35:24.643 MyExpertMT5 (GOLD-3.19,M5) array out of range in '10848-53731.mq5' (20460,26)"

      When I checked the code it appeared to be Dreema's function: bool OnTradeDetector().
      To be percise its 245 line:
      if (EGV_PositionsList0[i].type != EGV_PositionsList[i].type)

      Has anyone had such a problem or knows how to cope with it?

      posted in Bug Reports
      S
      Sapiens
    • Problems with Converter

      One week ago I used converter with no problem, but now it started to substitute text and comments, so - the result become unusable.
      For example:
      //#property indicator_buffers 10 converted to //1534768648007
      #property indicator_buffers 14 // 31.07.18 -> #property indicator_buffers 14 //1534768648008
      extern string Symbol1_Name=""; // First Pair -> input string Symbol1_Name=""; //1534768648016
      FileOpen(Symbol1_Name + "-"+ Symbol2_Name +"-NewDebug" + ".csv", FILE_TXT | FILE_READ | FILE_WRITE); -> FileOpen(Symbol1_Name + "1534768648047"+ Symbol2_Name +"1534768648048" + "1534768648049",FILE_TXT | FILE_READ | FILE_WRITE,'\t');
      PrintFormat("Impossible to open Debug File"); -> PrintFormat("1534768648050");

      enum ENUM_CALCULATION_MODE {
      By_Close, // By Close
      By_HLC, // By HLC
      By_OHLC // By OHLC
      };
      was converted to
      enum ENUM_CALCULATION_MODE{
      By_Close, //1534768648013
      By_HLC, //1534768648014
      By_OHLC //1534768648015
      };

      I tried all types of Unicode - 7,8,16,32, tried MetaEditor Save as Unicode...
      How could it be fixed without rewriting a lot by hand?

      posted in Bug Reports
      S
      Sapiens
    • Studio. How to modify variables?

      Re: What is the right way to do this with Fx Dreema

      Could you please explain how to let custom block modify external variable (not global one)?
      Approach, mentioned in https://fxdreema.com/forum/topic/4606/create-custom-block looks not perfect.
      How may I "Put the result into this Variable" like in Formula block? Otherwise - how to pass into custom block not value, but link to the variable?

      posted in Questions & Answers
      S
      Sapiens