Anubis – EA MetaTrader 5

Anubis - expert for MetaTrader 5
The author of the idea: John Smith, the mq5 code author: barabashkakvn. The EA trades using the signals of the following indicators: iStdDev (two indicators), iMACD, iCCI, iATR. Indicators parameters:    handle_iStdDev_20=iStdDev(m_symbol.Name(), PERIOD_H4, 20,0,MODE_SMA,PRICE_CLOSE);    handle_iStdDev_30=iStdDev(m_symbol.Name(), PERIOD_H4, 30,0,MODE_EMA,PRICE_CLOSE);    handle_iCCI =iCCI(m_symbol.Name(), PERIOD_H4, CCIPeriod,PRICE_CLOSE);    handle_iMACD =iMACD(m_symbol.Name(), PERIOD_M15, M_FastEMA,M_SlowEMA,M_Signal,PRICE_CLOSE);    handle_iATR =iATR(m_symbol.Name(), PERIOD_M15, 12); As you … Read more