If you need some Scripts I have some time to code for you

 

Hello, i have no credit card and want to transfer some money on my paypal account but can not do it without credit card so i have think about to code somethink in mql4 for somebody if he can donate me for it somethink to my paypalaccount, so if you need somethink i can code it for you email: lamoe150999@yahoo.de

 

Hi,

I am looking for someone to add a StopLoss to a fairly simple (adjustable) Martingale scalper. I am not in a position to pay for it, or I gladly would.

However you can register your bank account with PayPal without a credit card. I have credit cards on file with PayPal, but they only use them if I do not have enough money in my account to cover a payment.

.

Good luck and Prosperous Trading

 
DougRH4x wrote >>

Hi,

I am looking for someone to add a StopLoss to a fairly simple (adjustable) Martingale scalper. I am not in a position to pay for it, or I gladly would.

However you can register your bank account with PayPal without a credit card. I have credit cards on file with PayPal, but they only use them if I do not have enough money in my account to cover a payment.

.

Good luck and Prosperous Trading

Hello, sorry i dont get a info that somebody write me in the Topic.

I read you speak from a EA and stoploss, I can look at th code if you want you can send me and tell me you want to build in.

 

Hi,

I was wondering if its possible to add email feature on this ScreenShots indicator ?


Thanks in advance

SMK

//+------------------------------------------------------------------+
//| ScreenShots.mq4 version 2                        iziogas@mail.com|
//+------------------------------------------------------------------+

#property indicator_chart_window

//---- input parameters
extern string identification="ScreenShot";
extern int size.x=1024;
extern int size.y=768;

string fYear() {
   return (TimeYear(Time[0]));
}
  
string fMonth() {
   int i;
   i = TimeMonth(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}

string fDay() {
   int i;
   i = TimeDay(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}

string fHour() {
   int i;
   i = TimeHour(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}

string fMinute() {
   int i;
   i = TimeMinute(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}

string fSeconds() {
   int i;
   i = TimeSeconds(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}





int start()
  {
   static datetime OpenTime=0;
   datetime CurrentTime;
   string dir;

   //check for new bar
   CurrentTime = iTime(NULL,0,0);
   if (OpenTime==CurrentTime) return(0);
   OpenTime=CurrentTime;

   dir = StringConcatenate(identification,"\\",Symbol(),"\\",Period(),"\\",fYear(),fMonth(),fDay(),"\\");
   
   ScreenShot(
      StringConcatenate(dir,
                        identification,".",
                        Symbol(),".",
                        Period(),".",
                        fYear(),fMonth(),fDay(),".",
                        fHour(),fMinute(),fSeconds(),
                        ".gif"),size.x,size.y);
 

   return(0);
  }

 

 
smknyc wrote >>

Hi,

I was wondering if its possible to add email feature on this ScreenShots indicator ?

Thanks in advance

SMK

That is normaly not much difficult, you must just put the Sendmail() function in the code, i did a example:

//+------------------------------------------------------------------+
//| ScreenShots.mq4 version 2                        iziogas@mail.com|
//+------------------------------------------------------------------+

#property indicator_chart_window

//---- input parameters
extern string identification="ScreenShot";
extern int size.x=1024;
extern int size.y=768;

string fYear() {
   return (TimeYear(Time[0]));
}
  
string fMonth() {
   int i;
   i = TimeMonth(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}

string fDay() {
   int i;
   i = TimeDay(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}

string fHour() {
   int i;
   i = TimeHour(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}

string fMinute() {
   int i;
   i = TimeMinute(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}

string fSeconds() {
   int i;
   i = TimeSeconds(Time[0]);
   if (i<10) return ("0"+i); else return (i); 
}





int start()
  {
   static datetime OpenTime=0;
   datetime CurrentTime;
   string dir;

   //check for new bar
   CurrentTime = iTime(NULL,0,0);
   if (OpenTime==CurrentTime) return(0);
   OpenTime=CurrentTime;

   dir = StringConcatenate(identification,"\\",Symbol(),"\\",Period(),"\\",fYear(),fMonth(),fDay(),"\\");
   
   ScreenShot(
      StringConcatenate(dir,
                        identification,".",
                        Symbol(),".",
                        Period(),".",
                        fYear(),fMonth(),fDay(),".",
                        fHour(),fMinute(),fSeconds(),
                        ".gif"),size.x,size.y);
   
   SendMail( "Screenshot", dir);


   return(0);
  }
Reason: