1. Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)
    Dismiss Notice

Suggestion EA with source mq4

Discussion in 'Expert Advisor atau Robot Forex' started by Realbg, 22 Apr 2021.

  1. Realbg

    Realbg Member Credit Hunter

    Equity
    Credit
    Ref Point
    Hi all, sharing the EAs I have with source code, test and give feedback if they are worth something.
    I am looking for fix version of
    UCP 2.0 (Ultimatum Consistent Profit), if you share it will be much appreciated.
     

    Attached Files:

    • Like Like x 2
    • Friendly Friendly x 1
  2. Drake Levi

    Drake Levi Member Credit Hunter

    Equity
    Credit
    Ref Point
    is it real source code?
     
  3. Savage_tm

    Savage_tm Member Credit Hunter

    Equity
    Credit
    Ref Point
    This is my review for this thread:
    good job
     
    • Like Like x 1
  4. paladin79ers

    paladin79ers Member Credit Hunter

    Equity
    Credit
    Ref Point
    have run bt of all eas n blown away
     
  5. Drake Levi

    Drake Levi Member Credit Hunter

    Equity
    Credit
    Ref Point
    so, we can assume that's a different source code from the original?
     
  6. blackking

    blackking Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    Then what the best one as more profitable than others?
    Maybe scalping ea is better than others or all just source code
     
  7. erha2020

    erha2020 New Member

    Equity
    Credit
    Ref Point
    May I see your trading result/ testing?
    Thank you.
     
  8. holland1224

    holland1224 Member Credit Hunter

    Equity
    Credit
    Ref Point
    So change the buy operator in sell and vice versa and you have a profitable ea....
     
  9. egfx1079

    egfx1079 New Member

    Equity
    Credit
    Ref Point
    Thank you, those MQ4 was good enough.

    DensityScalperEA.mq4 code was close to the real code.

    What do you mean? You can do it from the source code, Caroline.
     
    • Like Like x 1
  10. erha2020

    erha2020 New Member

    Equity
    Credit
    Ref Point
    "It close to real", mean it does not run well after we compile it?
     
  11. egfx1079

    egfx1079 New Member

    Equity
    Credit
    Ref Point
    Close to real mean the code was works as is.
     
  12. Realbg

    Realbg Member Credit Hunter

    Equity
    Credit
    Ref Point
    One more, careful with this one, might blow your account!
     

    Attached Files:

  13. egfx1079

    egfx1079 New Member

    Equity
    Credit
    Ref Point
    Here are simple code to lock the EA, choose which one you need.
    1. Add Trial Expiration Date

    Code:
    //Global Variable
    datetime gExpirationDate = D'2021.04.30 00:00'; //Format YYYY.MM.DD HH:MM
    ...
    
    void OnTick()
      {
      //Expiration date checking
       if(TimeCurrent() > ExpirationDate)
       {
          Alert("EA is Expired. Please contact EA programmer!");
          ExpertRemove();
          return;
       }
       //---
    2. Add Account Lock
    Code:
    //Global Variable
    int gAccountNumber = "12345678";
    
    void OnTick()
      {
      //Account Number Checking
       if(AccountNumber() != gAccountNumber)
       {
          Alert("EA is not registered for your account number!. Please contact the EA coder!");
          ExpertRemove();
          return;
       }
       //---
    
     
    • Like Like x 1
  14. egfx1079

    egfx1079 New Member

    Equity
    Credit
    Ref Point
    What is the specific error messages? How did you embed it to your MQ4?
     
  15. egfx1079

    egfx1079 New Member

    Equity
    Credit
    Ref Point
    You can do back and forward test to found which is best for you.
     
  16. goncalo008

    goncalo008 New Member

    Equity
    Credit
    Ref Point
    Witch one had the problem? i can fix it for you. I tought was the one. but i compiled and got no errors :S
     
  17. egfx1079

    egfx1079 New Member

    Equity
    Credit
    Ref Point
    Just remove the opening parentheses after if statement close.
    Or upload your code here so we can fix it.
     
  18. Mushasimaru

    Mushasimaru New Member

    Equity
    Credit
    Ref Point
    5/5,
    This is my review for this thread:
    greattttt
     
  19. mnuh69

    mnuh69 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Does anybody have King Gold EA source code?
     
  20. youtrader30

    youtrader30 Member Credit Hunter

    Equity
    Credit
    Ref Point
    does anyone have source code of TSR EA? I need this source code but I can't find it on internet
     

Share This Page