Jump to content
ShiliDola.Com

Admin

Administrators
  • Content count

    654
  • Joined

  • Last visited

Posts posted by Admin


  1.  

    On 4/23/2023 at 11:55 PM, Rei said:

    Descompilador ex5 para mt5

    Tirar licença e restrições tornando vitaliano. 

    Robô Fimathe.ex5

    You can decompile Robô Fimathe.ex5 EA and remove all restrictions using https://sharedlinks.shilidola.com/product/ex5-mql5-ex4-mq5-converter-decompiler-software-bundle-zip/  With that software it is very easy to access the source code and modify it the way you want.


  2. 19 hours ago, wcente4711@gmail.com said:

    Hello, 
    I would like to get the ex5 executable script decompiled into mq5 source code. 
    The script is changing the time frame or template of all open charts in a loaded profile in MT5. 
    It has no expiration date or license included. 
    How much would I need to pay and how ? 
    Rgds Jeff

    apply_template.ex5

    Hello, I have successfully decompiled it. See screenshot below. On how to pay and get the source code, reach me via telegram https://t.me/eF1_admin

    Capture.png


  3. On 8/23/2020 at 2:40 PM, Guest Collins said:

    Hello admin,

    Thanks for the info. For now, I'm just interested in converting Nano Trader FX to MQL4 source code, however, I might consider asking for help re-coding it for different functions, if it isn't something I'm able to do. I also have some other files I'd be interested in changing as well.

    Thanks.

    We already decompiled it using our decompiler, but you posted this as a guest, so you can not download attached files. Just  sign-up and login or at least provide your email.

    Thanks.


  4. 9 hours ago, laudemir said:
    • What it is (is it a mt4|mt5 indicator or Expert Advisor?)

    Indicator mt5

    • How it works

    works with envelopes

    • It’s usefulness and indicate if it has limitations(expiry, license etc)

    no limitations and no expiration date

    • What you want us to do.

    I would like to know if it is possible to decompile and how much this service costs

     

    S_Envelopes.ex5

    Hello @laudemir,

    We have successfully managed to decompile your indicator from ex5 to mq5 using our decompiling software. (see below screenshots).

    S_Envelopes2.PNG

    S_Envelopes1.PNG


  5. 1. Cash Flow Ready Templates
    2. KPI Dashboards
    3. Productivity & Manpower
    4. Progress & Tracking Sheets
    5. Project Progress Reports for Planners
    6. Ready Time Schedules of Primavera Software
    7. Time Line Templates

    Downloads available on request.


  6. You can get buffer details for ex5 files even if you don't have the source code, but you need to know all input parameters and data type. then put that indicator in mt5 indicators  folder.

    Sample code snippets

    bool signal (double value) 
    {
      if (value != 0 && value != EMPTY_VALUE)
         return value;
      else
         return false; //here you can return either value or bool true/false
    } 
    
    
    /////////////////////////////////////////////
    input string IndicatorName = ""; // Indicator File Name
    
    custom=iCustom(_Symbol,PERIOD_CURRENT,
    CopyBuffer(MAIN_LINE
    if(custom==INVALID_HANDLE)
     iCustom(NULL, 0, IndicatorName)
    ////////////////////////////////////////////
    
    if (IndicatorName != "") {
         UP = iCustom(NULL, 0, IndicatorName);
         DOWN = iCustom(NULL, 0, IndicatorName);
    
    //////////////////////////////////////////
    
    
     custom=iCustom(_Symbol,PERIOD_CURRENT,"Examples\\Custom Moving Average.ex5",MA_Period,MA_Shift,MA_Method,MA_Price);
      if(custom==INVALID_HANDLE)
         return INIT_FAILED;
    
    //////////////////////////////////////////
    
    Handle=iCustom(NULL,0,"IndicatorName",Length_,Phase_,2,0,0);
      if(JO_Handle==INVALID_HANDLE)
        {
         Print(" Failed to get handle of the indicator JMA");
         return(1);
        }

     

×