A BASIC EA

MQL4 Indicadores Asesores Expertos

Trabajo finalizado

Plazo de ejecución 1 día

Tarea técnica

#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Yellow
#property indicator_color2 Lime
#property indicator_color3 OrangeRed
#property indicator_color4 Chartreuse
#property indicator_width1 2
#property indicator_width2 2
#property indicator_width3 2


extern int BarsHistory =10000;
extern int PeriodCCI =50;
extern int PeriodATR =5;

extern bool alert = true;
extern bool email = false;
extern bool fractals =true;

double Trend[];
double TrendUp[];
double TrendDown[];
double fr[];
double CCI,ATR,Bf;
int tr=0;
int tm;
//+------------------------------------------------------------------+
int init(){
 SetIndexBuffer(0,Trend);
 SetIndexBuffer(1,TrendUp);
 SetIndexBuffer(2,TrendDown);
 SetIndexBuffer(3,fr);SetIndexStyle(3,DRAW_ARROW);SetIndexArrow(3,108);
 }
//+------------------------------------------------------------------+ 
void mail(string c){
 if(IsTesting()==false&&IsOptimization()==false&&IsVisualMode()==false){
 SendMail(WindowExpertName(),c);}}
//+------------------------------------------------------------------+ 
void Signal(string c){
 if(IsTesting()==false&&IsOptimization()==false&&IsVisualMode()==false){
 if(alert)Alert("New signal "+c);
 if(email)mail("New signal "+c);}}
//+------------------------------------------------------------------+
void object(string Nm,string Tx,int Sz,string Shr,color Col,int Y,int X,int W)
 {
 ObjectCreate(Nm,OBJ_LABEL,0,0,0);                //ñîçäàåì îáúåêò
 ObjectSetText(Nm,Tx,Sz,Shr,Col);                 //óêàçûâàåì ÷òî ıòî òåêñòîâûé è ââîäèì ïàğàìåòğû
 ObjectSet(Nm,OBJPROP_YDISTANCE,Y);               //óñòàíàâëèâàåì Y -êîîğäèíàòó
 ObjectSet(Nm,OBJPROP_XDISTANCE,X);               //óñòàíàâëèâàåì X -êîîğäèíàòó
 ObjectSet(Nm,OBJPROP_CORNER,W);                  //óñòàíàâëèâàåì óãîë ïğèâÿçêè
 if(Shr!="Arial")ObjectSet(Nm,OBJPROP_BACK,true); //óñòàíàâëèâàåì ôîí èëè îáû÷íûé îáúåêò
 } 
//+------------------------------------------------------------------+ 
int start()
{
 object("Time",TimeToStr(TimeCurrent()),9,"Arial",White ,20,20,1);
 if(TimeCurrent()<tm+5)return(0);tm=TimeCurrent();
//static int time;if(iTime(NULL,0,0)==time)return(0);time=iTime(NULL,0,0); 
//+----------
 for(int i=BarsHistory+MathMax(PeriodCCI,PeriodATR)*2;i>0;i--)
 {
 CCI=iCCI(NULL,0,PeriodCCI,PRICE_TYPICAL,i);
 ATR=iATR(NULL,0,PeriodATR,i);
//+---------- 
 if(CCI>0&&Low[i]-ATR>Bf)Bf=Low[i]-ATR;
 if(CCI<0&&High[i]+ATR<Bf)Bf=High[i]+ATR;
 if(fractals&&iFractals(NULL,0,1,i)>0)fr[i]=iFractals(NULL,0,1,i);
 if(fractals&&iFractals(NULL,0,2,i)>0)fr[i]=iFractals(NULL,0,2,i);
//+---------- 
 if(i<BarsHistory){ 
 Trend[i]=Bf;
 if(CCI>0){TrendUp[i]=Bf;}
 if(CCI<0){TrendDown[i]=Bf;}
 }}
 if(TrendUp[1]<1000)if(tr==2||tr==0){tr=1;Signal("Current Trend: UP");ObjectDelete("Trend");object("Trend","Current Trend: UP",9,"Arial",LawnGreen ,40,20,1);}
 if(TrendDown[1]<1000)if(tr==1||tr==0){tr=2;Signal("Current Trend: DW");ObjectDelete("Trend");object("Trend","Current Trend: DW",9,"Arial",OrangeRed ,40,20,1);}
 }
//+------------------------------------------------------------------+
void deinit(){ObjectDelete("Time");ObjectDelete("Trend");}
//+------------------------------------------------------------------+

This is very basic itrend indicator.

With this indicator i want EA

This EA will have

SL

Trail start

Trail step

Take it if with step

And lot thats it for now.

Han respondido

1
Desarrollador 1
Evaluación
(647)
Proyectos
1295
67%
Arbitraje
84
26% / 49%
Caducado
338
26%
Libre
2
Desarrollador 2
Evaluación
(333)
Proyectos
543
66%
Arbitraje
53
21% / 40%
Caducado
169
31%
Libre
Ha publicado: 1 ejemplo
3
Desarrollador 3
Evaluación
(71)
Proyectos
156
44%
Arbitraje
22
41% / 14%
Caducado
16
10%
Libre
Ha publicado: 10 ejemplos
Solicitudes similares
Scalping EA/straddle 30 - 200 USD
Title: Custom EA: Dynamic Trailing Limit Grid with Volatility/Velocity Filter and Auto SL/TP Description: I am looking for an experienced MQL5 programmer to develop a high-performance, robust Expert Advisor (EA) for MetaTrader 5. The strategy relies on dynamic trailing limit orders that automatically adjust to market price changes, featuring a safety buffer during high-velocity price spikes. The EA must include the
Freelance Task — EA Recovery Layer Hello. I have a ready-made MQL5 EA. The signals, SL/TP and lot calculation should essentially not be touched. I need a recovery system added. I am not a programmer — below is how the robot should behave. What stays Entry only from an EA signal. Stop-loss is not a new signal. Trailing is already built into my EA — recovery does not implement its own trailing. If trailing is disabled
Watcher position 30 - 100 USD
//+------------------------------------------------------------------+ //| synthetic tick generator based on two assets | //+------------------------------------------------------------------+ class CSyntheticTickGenerator { private : string symbol_a; string symbol_b; string synth_name; double ratio; double last_price_a; double
# SNRZ BOT — SESSION PROGRESS LOG Last updated: 2026-09-16 (local late-evening session) ## SAN BOT (new — cloned from SNRZ) - `MQL5\Experts\AutomatedOrderBot_SAN.mq5` / `.ex5` — v1.0, compiled 0 errors/0 warnings - Signal source: custom indicator "SAN" (InpSANName, buy buf 0 / sell buf 1, target bar 1), same SNRZ-style read, MA fallback if missing - Magic number 234567 (separate from SNRZ 123456 so both bots can run
Multi-Asset EA (XAUUSD / FRA40) with Time Filters, High-Impact News Avoidance, Advanced Risk/Lot Sizing, and H1 Breakout Strategy 1. RISK SETTINGS * Max Daily Loss Limit: (bool) Toggle true/false. If true, input double for max loss in currency (e.g., $500). If hit, close all positions and stop trading until next day. * Lot Sizing Mode: Dropdown menu: 1. Fixed Lots (e.g. 0.10); 2. Percentage Risk (%) based on Account
Subject: Looking for an Experienced MQL Developer for Long-Term Collaboration (Mechanical Strategy) Hello everyone, I am reposting my request from last year. Due to work commitments, I couldn't dedicate time to this project back then, but now I am fully ready to move forward. I am looking for a highly experienced, verified MQL4/MQL5 programmer to automate my trading strategy. About the project: Rule-based &
Should be as it but no alarms, also we need to add a deep search so he can see all the preves candles and a memory function so its not slowing down the indicator. for higher time frames daily 4h 1h around 365 days and for lower time frames we do up to 20k bars but both flexible so i can change it later. the memory is important so the indicator is not always recalculating everything when a new candle shows especially
Creating a bot using the Parabolic indicator with a simple interface.. I want a bot that uses the Parabolic SAR indicator only, with these orders attached to it. Boot name : HEMIN .FX Magic number : 000000 …………………………………………………. Trade behavior : regular OR inverse OR only long "buy" OR only short "sell" Timeframe : ………… Period: ……… ………………………………………………….. Lot size : ……………… Break even in points : …
I am looking for an experienced MQL5 EA developer to develop an MT5 EA by the observable trading behaviour from a supplied live XAUUSD trade history . The EA appears to use a simple grid/recovery/hedging strategy with alternating BUY/SELL positions and progressive lot sizes. I need the developer to Develop the EA for MT5 / XAUUSD . Reproduce the observed entry, grid/add-on, recovery/hedging, lot progression and
Project: Fix & Schedule My Dual Fibo Standard Fibonacci Bot I have an existing MQ4 expert advisor called "Dual Fibo Standard Fibonacci". It needs to process 1,000 clients. Right now it runs blindly with no schedule and takes way too long. I need you to optimize it so it runs like a professional business with a 50-100 batch printed stamp copy progress log. Please reply with your numbers for this simple layout: * Phase

Información sobre el proyecto

Presupuesto
40 - 50 USD
Plazo límite de ejecución
de 1 a 2 día(s)