Fisher indicator to EA

MQL4 Indicadores Experts

Trabalho concluído

Tempo de execução 14 dias

Termos de Referência

I am trying to create an EA with an indicator that I just download. It's name Fisher Indicator. 

I have the code for the fisher, what I need you to do is just to create an EA, and if the indicator window showing it's green light (or higher than a value) the EA will place a Buy order. 

If the indicator window showing it's red Light  (Candle) (Or lower than a set value), the EA will place a sell order. 

However, this indicator are working with repaint. So the EA need wait until the confirm signal which is the 2nd of the candle to place or close the order. TP will taken if there is an opposite signal pushing up. 


I will decide to add-on the SL and money management after testing this EA. The SL and MM work will be pay by extra cash. It's better if you can make it with 10 USD. Just let me know your price if you can do it. 


Attached is the indicator file and below if the code base : 


#property  copyright "Copyright ?2005, Yura Prokofiev"

#property  link      "Yura.prokofiev@gmail.com"


#property  indicator_separate_window

#property  indicator_buffers 3

#property  indicator_color1  Black

#property  indicator_color2  Lime

#property  indicator_color3  Red

 

extern int period=10;


double         ExtBuffer0[];

double         ExtBuffer1[];

double         ExtBuffer2[];



int init()

  {

   

   

   SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,2,Red);

   SetIndexStyle(1,DRAW_HISTOGRAM,STYLE_SOLID,2,Lime);

   SetIndexStyle(2,DRAW_HISTOGRAM);

   IndicatorDigits(Digits+1);


   SetIndexBuffer(0,ExtBuffer0);

   SetIndexBuffer(1,ExtBuffer1);

   SetIndexBuffer(2,ExtBuffer2);


   IndicatorShortName("Fisher");

   SetIndexLabel(1,NULL);

   SetIndexLabel(2,NULL);


   return(0);

  }



int start()

  {

   //int     period=10;

   int    limit;

   int    counted_bars=IndicatorCounted();

   double prev,current,old;

   double Value=0,Value1=0,Value2=0,Fish=0,Fish1=0,Fish2=0;

   double price;

   double MinL=0;

   double MaxH=0;  

   


   if(counted_bars>0) counted_bars--;

   limit=Bars-counted_bars;



   for(int i=0; i<limit; i++)

    {  MaxH = High[Highest(NULL,0,MODE_HIGH,period,i)];

       MinL = Low[Lowest(NULL,0,MODE_LOW,period,i)];

      price = (High[i]+Low[i])/2;

      Value = 0.33*2*((price-MinL)/(MaxH-MinL)-0.5) + 0.67*Value1;     

      Value=MathMin(MathMax(Value,-0.999),0.999); 

      ExtBuffer0[i]=0.5*MathLog((1+Value)/(1-Value))+0.5*Fish1;

      Value1=Value;

      Fish1=ExtBuffer0[i];

      

    }



   bool up=true;

   for(i=limit-2; i>=0; i--)

     {

      current=ExtBuffer0[i];

      prev=ExtBuffer0[i+1];

           

      if (((current<0)&&(prev>0))||(current<0))   up= false;    

      if (((current>0)&&(prev<0))||(current>0))   up= true;

      

      if(!up)

        {

         ExtBuffer2[i]=current;

         ExtBuffer1[i]=0.0;

        }

        

       else

         {

          ExtBuffer1[i]=current;

          ExtBuffer2[i]=0.0;

         }

     }


   return(0);

  }

Arquivos anexados:

Respondido

1
Desenvolvedor 1
Classificação
(636)
Projetos
1007
47%
Arbitragem
33
36% / 36%
Expirado
99
10%
Trabalhando
Publicou: 6 códigos
2
Desenvolvedor 2
Classificação
(34)
Projetos
80
34%
Arbitragem
13
31% / 54%
Expirado
19
24%
Livre
3
Desenvolvedor 3
Classificação
(27)
Projetos
28
54%
Arbitragem
4
0% / 50%
Expirado
5
18%
Livre
Publicou: 7 artigos, 63 códigos
4
Desenvolvedor 4
Classificação
(414)
Projetos
670
33%
Arbitragem
60
17% / 32%
Expirado
113
17%
Trabalhando
5
Desenvolvedor 5
Classificação
(53)
Projetos
79
18%
Arbitragem
13
15% / 54%
Expirado
5
6%
Livre
6
Desenvolvedor 6
Classificação
(772)
Projetos
1039
44%
Arbitragem
50
8% / 50%
Expirado
116
11%
Livre
Pedidos semelhantes
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
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
I'm looking for an experienced developer to create an automated gold trading bot. The bot should be compatible with MetaTrader 4/5 and TradingView. Key Requirements: - Automated trading bot - Compatible with MetaTrader 4/5 and TradingView - Implement scalping and swing trading strategies Ideal Skills and Experience: - Proficiency in trading algorithms - Experience with gold trading - Familiarity with MetaTrader and
I need a robust optimization of my MT5 EA, mainly for XAUUSD (Gold). Please optimize the existing adjustable parameters such as entry/exit settings, SL/TP, trailing/break-even settings, and any other strategy parameters that are appropriate. I want the optimization focused on stable profitability, low/moderate drawdown, and robustness rather than simply the highest possible profit. Please use out-of-sample testing
NinjaTrader 8 / NinjaScript Phase 1 build: convert an existing Auction Market Theory (AMT) strategy into objective, alert-only decision-support logic. Not a bot, no auto-execution — trades stay manual. Covers NQ/MNQ, ES, CL, MGC using 30-min TPO/Volume Profile context with 5-min confirmation: one 5-min close outside VAH/VAL = acceptance, close back inside = rejection. Dashboard shows bias, auction state, location
Hello, I need a custom NON-REPAINT MT5 indicator that gives sell/buy arrow signals 1–2 candlesticks before a spike on Crash and boom indices respectively occurs. Requirements: Works perfectly on MT5 Shows arrows before the spike (1–2 candles earlier). Non-repaint – once the arrow appears, it must stay. Should be accurate, not quantity — only quality signals. Must work on both demo and live accounts. I want the
Hello, I saw an indicator on TradingView and would like to know if you will be able to convert it for use on Thinkorswim platform? Thanks. if anyone can help me with it kindly do well to bid it urgent thanks looking forward too see you
calcVolume( void ) { //--- MqlRates rates[]; if ( CopyRates ( _Symbol , PERIOD_CURRENT , startTime, endTime, rates) > 0 ) { double rangeHigh = rates[ 0 ].high, rangeLow = rates[ 0 ].low; int count = MathAbs ( iBarShift ( _Symbol , PERIOD_CURRENT , startTime) - iBarShift ( _Symbol , PERIOD_CURRENT , endTime)) + 1 ; //---VERTICAL PRICE RANGE for ( int b = 0
Create an MT5 Expert Advisor (EA) for trading Gold (XAUUSD). The EA should provide BUY and SELL signals based on trend direction, market momentum, and price action. It should automatically place trades only when the entry conditions are met. Risk management: Use a small adjustable lot size. Include Stop Loss (SL) and Take Profit (TP). Include a maximum daily loss limit. Include a maximum number of open trades. Do not
Hello there, I am looking for a automated strategy for ninjatrader 5 Looking for a proven profit factor of 1.5 ( minimum ) on 15 mins time frame . I do MNQ futures I do not have the logic, but I like mean reverssion variable , plus RSI etc . that could make the automated tool robust and long lasting. i need fast response if you have

Informações sobre o projeto

Orçamento
20 USD
Prazo
1 dias