A BASIC EA

Работа завершена

Время выполнения 1 день

Техническое задание

#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.

Откликнулись

1
Разработчик 1
Оценка
(647)
Проекты
1295
67%
Арбитраж
84
26% / 49%
Просрочено
338
26%
Свободен
2
Разработчик 2
Оценка
(333)
Проекты
543
66%
Арбитраж
53
21% / 40%
Просрочено
169
31%
Свободен
Опубликовал: 1 пример
3
Разработчик 3
Оценка
(71)
Проекты
156
44%
Арбитраж
22
41% / 14%
Просрочено
16
10%
Свободен
Опубликовал: 10 примеров
Похожие заказы
Is there anyone with an indicator that give signal after head and shoulder pattern is formed in Volatility indices? The indicator will wait for the second shoulder to be formed before giving an arrow of buy or sell
Hi, I want to develop a highly accurate, custom technical indicator for MetaTrader 5 (MT5) specifically tailored for 1-minute Binary Options trading (Quotex). I do NOT need an automated trading bot. I only need visual buy/sell arrows on the chart, an advanced alert system, and an on-chart performance statistics dashboard. The indicator must be 100% non-repainting. --- 1. STRATEGY CONFLUENCE LOGIC The indicator should
Create a bot that can trade and read indicators easy to read for first time users. Bot that can be used on a phone and connect to MT5. It should be easy to install or use on any device especially phone and laptop, preferably the bot that can run over night and controllable when needed
These are orderflow footprint indicator I would like to know if you can algorithmisie and build a stacked imbalance bot from them .. Kindlt let me know if you can do it and check the file before replying me
I have 2 trading view indicators by GainzAlgo that I want code to mt5 , could u advise? I need you to give me response if you can convert This
I DO NOT need any programming or strategy development. I already have a working NinjaTrader 8 automated strategy based on a 3/5 EMA crossover. I need you to run my existing strategy through NinjaTrader Strategy Analyzer/Optimizer, test the existing adjustable parameters, and find robust settings with the best profit factor and lowest reasonable drawdown. I will provide the existing NinjaScript ZIP. I do not want the
Platform: TradingView Programming Language: Pine Script v6 Type: Custom Indicator Project Name: Scalping Reaction Zones + Valid Order Blocks MAIN GOAL I need a custom TradingView indicator for scalping. The indicator must detect: 1. Reaction / Explosion Zones 2. Valid Order Blocks 3. Combined Reaction Zone + Order Block zones The indicator should NOT generate: Buy signals Sell signals TP SL Entry signals Trading
Project Description I am looking for an experienced MQL5/MT5 Expert Advisor developer to develop an automated trading EA for XAUUSD on the M3 timeframe , running on an Exness account . The EA will automate a manual strategy based on SNR/GAP zones , using two setup types: Price Rejection Price Correction The EA should identify valid BUY/SELL setups around predefined SNR/GAP areas, apply configurable RSI, SMA, EMA and
Indicador Maximas e Minimas + Super Trend O Indicador MAX/MIN é um indicador de análise técnica para o MetaTrader 5 , desenvolvido para ajudar você a identificar regiões importantes de preço e possíveis oportunidades de compra e venda. O que ele faz MAX/MIN: identifica máximas e mínimas relevantes do mercado e mostra os preços no gráfico. HH / HL / LH / LL: ajuda a visualizar a estrutura do mercado, mostrando quando
Hello Traders, Have a trading strategy or idea you want to automate? I specialize exclusively in MQL5 development, helping traders turn their concepts into professional trading solutions. Custom Expert Advisors — automate your strategy and reduce manual execution Custom Indicators — transform your market ideas into powerful trading tools Fix & Debug — identify errors and get your existing code working properly

Информация о проекте

Бюджет
40 - 50 USD
Сроки выполнения
от 1 до 2 дн.