Welcome Forex EA downloads & MT4/MT5 auto-trading resources — EAs, Gold EAs, quant tools and real-world automation.
Sign In Sign Up

Anubis - MetaTrader 5 Expert | Forex Indicators Download - MT4/MT5 Resources

author EAcpu | 3 reads | 0 comments |

Author of the idea : John Smith , author of the mq5 code : Balabashkakorn .

The EA trades using the signals of the following indicators: iStdDev (two indicators), iMACD, iCCI, iATR.

Indicator parameters:

  Handle_iStdDev_20= standard deviation (m_symbol.Name(),  PERIOD_H4 ,  20 , 0 , mode_SMA , PRICE_CLOSE );
  Handle_iStdDev_30= standard deviation (m_symbol.Name(),  PERIOD_H4 ,  30 , 0 , mode_EMA , PRICE_CLOSE );
  Handle_iCCI      = iCCI (m_symbol.Name(),     PERIOD_H4 ,  CCIP period, PRICE_CLOSE );
  handle_iMACD     = Smoothed Moving Average Convergence and Divergence (m_symbol.Name(),    PERIOD_M15 , M_FastEMA,M_SlowEMA,M_Signal, PRICE_CLOSE );
  handle_iATR      = iATR (m_symbol.Name(),     PERIOD_M15 , 12 );

As you can see, the indicator's timeframe is hardcoded and has no input parameters.

In addition, the code also uses the bar opening and closing price data of the time range M15:

 Double i off 1 = Close ( 1 ,m_symbol.Name(), PERIOD_M15 );
Double iOpen1  =Love to open( 1 ,m_symbol.Name(), PERIOD_M15 );

The Expert Advisor tracks the position and, if possible, moves it to the break-even point.


Attachment download

📎 anubis.mq5 (52.87 KB)

Source: MQL5 #19095

Verification code Refresh