Intersection 2 iMA – EA MetaTrader 5

Intersection 2 iMA - expert for MetaTrader 5
The author of the idea is Maksim Zerkalov, and the author of the mq5 code is barabashkakvn.  This simple system is based on the crossover of two MAs. Buying if the fast MA crosses the slow one upward. Selling if the fast MA crosses the slow one downward. Closing at an opposite signal. Intersection 2 iMA – expert for MetaTrader … Read more

iCCI iMA – EA MetaTrader 5

iCCI iMA test
Author of the idea is Andrey, the author of the MQL5 code is barabashkakvn. Calculating Moving Average using Commodity Channel Index data: //— create handle of the indicator iMA    handle_iMA=iMA(m_symbol.Name(),Period(),15,0,MODE_EMA,handle_iCCI); //— if the handle is not created    if(handle_iMA==INVALID_HANDLE)      {       //— tell about the failure and output the error code       PrintFormat(“Failed to create handle … Read more

iMA iSAR EA – EA MetaTrader 5

iMA iSAR EA
Idea by: Yuri mq5 code by: barabashkakvn The EA only operates when a new bar emerges. Trading signals are generated based on the values of three indicators iMA (Moving Average, MA), two indicators iRSI (Relative Strength Index, RSI), and the value of close (all balues are taken for bar #1).  Block for decision making:    if(ma_fast[1]>ma_normal[1] && … Read more

iMA iStochastic Custom – EA MetaTrader 5

iMA iStochastic Custom
The EA uses custom indicators Custom Moving Average Levels and Stochastic Custom. The EA only operates when a new bar appears. It can be averaged, i.e., open multiple position in the same direction. Exit a position: By Stop Loss triggering By Take Profit triggering By the opposite signal There is the reverse of trading signals. Trading signals. Here, … Read more

iMA iStdDev – EA MetaTrader 5

iMA iStdDev
Idea by: Sergey Deev mq5 code by: barabashkakvn The EA trades on two indicators iMA (Moving Average) and one indicator iStdDev (Standard Deviation, StdDev). It does not involve Stop Loss, Take Profit, or Trailing Stop. Positions are closed as soon as the opposite signal is received. A sample Sell deal. Conditions: 1) Fast iMA (MA Fast) is … Read more

Ilan iMA – EA MetaTrader 5

Ilan iMA
Idea by: Ingrit mq5 code by: barabashkakvn ATTENTION: The EA is designed to work on hedge accounts only! Ilan based on indicator iMA (Moving Average, MA) Signal BUY, signal SELL:       if(ma[0]<ma[1] && ma[1]<ma[2] && ma[2]<ma[3]) // trend down         {          if(m_symbol.Bid()>ma[0])             m_need_open_sell=true;         }       else if(ma[0]>ma[1] && ma[1]>ma[2] && ma[2]>ma[3]) // trend up         {          if(m_symbol.Ask()<ma[0])             m_need_open_buy=true;         } If … Read more

Percentage of CLose and iMA prices – indicator MetaTrader 5

Percentage of CLose and iMA prices
The idea of the indicator The indicator counts (in percentage) how many times the ‘Close’ price has been above or below the ‘iMA’ indicator. The calculation period is equal to the indicator averaging period. Please note: the ‘iMA’ indicator has been added to the main window manually for visualization purposes. Rice. 1. Percentage of CLose and … Read more