need EA coder help

 

greetings


need EA /indicator coding help from someone familiar with ichimoku indicator


very very simple system but very reliable - only 2 indicators involved


my trading system is used in live account by full time trader


leave your email to my message box if keen to help


serious coder only

 
hi my dear friends I have a simple problem whit my EA, I want it work by crossing 2 EMA line for example EMA 5, 6 But when i clear TP, SL, Trailling Stop its not worked. Please help me I attached this ea here. thank you babak
Files:
 
forex557:
hi my dear friends I have a simple problem whit my EA, I want it work by crossing 2 EMA line for example EMA 5, 6 But when i clear TP, SL, Trailling Stop its not worked. Please help me I attached this ea here. thank you babak

There is no programming in your EA to move the stop loss.
 
forex557:
hi my dear friends I have a simple problem whit my EA, I want it work by crossing 2 EMA line for example EMA 5, 6 But when i clear TP, SL, Trailling Stop its not worked. Please help me I attached this ea here. thank you babak

2.71 KB your program PLEASE use SRC and give code directly so we don't have to download some garbage to see if we can help you
//+------------------------------------------------------------------+
//|                                                   ADX_ALLERT.mq4 |
//|                      Copyright © 2004, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.net/ |
//| crossing Allert                                                  |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2004, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net/"

#property indicator_separate_window
#property indicator_buffers 3
#property indicator_color1 LightSeaGreen
#property indicator_color2 YellowGreen
#property indicator_color3 Wheat
//---- input parameters
extern int ADXPeriod=14;
extern bool SoundAlert = true;
//---- buffers
double ADXBuffer[];
double PlusDiBuffer[];
double MinusDiBuffer[];
double PlusSdiBuffer[];
double MinusSdiBuffer[];
double TempBuffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//---- 3 additional buffers are used for counting.
   IndicatorBuffers(6);
//---- indicator buffers
   SetIndexBuffer(0,ADXBuffer);
   SetIndexBuffer(1,PlusDiBuffer);
   SetIndexBuffer(2,MinusDiBuffer);


...........................    
Do it like This way for example we can read directly your code