• 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 :)

Suggestion EA with source mq4

Realbg

Member
Credit Hunter
Credits
0
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.
 

Attachments

Then what the best one as more profitable than others?
Maybe scalping ea is better than others or all just source code
 
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.
Thank you, those MQ4 was good enough.

is it real source code?
DensityScalperEA.mq4 code was close to the real code.

How do we put time setting into these codes, I need code, both for trial and for real account
What do you mean? You can do it from the source code, Caroline.
 
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;
   }
   //---
 
hi , all !
I am running euro scalper and its works fine for me .
Do you see in code based on what trigger its deciding to open long or short position ?
Its interesting as i set distance and ea opens differently which looks great for me and not just dumb martingle
So i wonder its makes additional kind of calculation or some parameters check before averaging down .
 
Back
Top